IntlChar
PHP Manual

IntlChar::ord

(PHP 7)

IntlChar::ordReturn Unicode code point value of character

Descrição

public static int IntlChar::ord ( mixed $character )

Returns the Unicode code point value of the given character.

This function compliments IntlChar::chr().

Parâmetros

character

A Unicode character.

Valor Retornado

Returns the Unicode code point value as an integer.

Exemplos

Exemplo #1 Testando codepoints diferentes

<?php
var_dump
(IntlChar::ord("A"));
var_dump(IntlChar::ord(" "));
var_dump(IntlChar::ord("\u{2603}"));
?>

O exemplo acima irá imprimir:

int(65)
int(32)
int(9731)

Veja Também


IntlChar
PHP Manual