Unicode Finder

"唳" U+5533(CJK UNIFIED IDEOGRAPH-5533)

U+5533
Nombre del Bloque
CJK Unified Ideographs
Nombre
CJK UNIFIED IDEOGRAPH-5533

Programming

C
\u5533
JavaScript
\u5533
Java
\u5533
Json
\u5533
Python
\u5533
Perl
\x{5533}
PHP
\x{5533}
Ruby
\u{5533}
Rust
\u{5533}
Go
\u5533

Web

CSS
\005533
HtmlDecimal
唳
HtmlHexadecimal
唳
Url
%E5%94%B3

Code

MD5
4db273b96aa000c7f829085372f8f283
Sha1
9ade40cffcd5d6dbba985f5fb045911ef1855e1d
Base64
5ZSz

Ejemplos de Uso

Programming Languages

C:

char c = '\u5533';
printf("%c\n", c);  // Output: 唳

JavaScript:

const char = '\u5533';
console.log(char);  // Output: 唳

Java:

char c = '\u5533';
System.out.println(c);  // Output: 唳

JSON:

{"text": "\u5533"}  // Value: 唳

Python:

char = '\u5533'
print(char)  # Output: 唳

Perl:

my $char = "\x{5533}";
print $char;  # Output: 唳

PHP:

$char = "\x{5533}";
echo $char;  // Output: 唳

Ruby:

char = "\u{5533}"
puts char  # Output: 唳

Rust:

let c = '\u{5533}';
println!("{}", c);  // Output: 唳

Go:

char := '\u5533'
fmt.Printf("%c\n", char)  // Output: 唳

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005533";  /* Display: 唳 */
}

HTML Decimal:

<p>HTML decimal: &#21811;</p>  <!-- Display: 唳 -->

HTML Hexadecimal:

<p>HTML hex: &#x5533;</p>  <!-- Display: 唳 -->

URL Encoding:

// 唳 URL encoding
https://unicodefinder.com/search.php?query=%E5%94%B3

Encodings

MD5:

4db273b96aa000c7f829085372f8f283

SHA1:

9ade40cffcd5d6dbba985f5fb045911ef1855e1d

Base64:

5ZSz