Unicode Finder

"嚯" U+56AF(CJK UNIFIED IDEOGRAPH-56AF)

U+56AF
Nombre del Bloque
CJK Unified Ideographs
Nombre
CJK UNIFIED IDEOGRAPH-56AF

Programming

C
\u56AF
JavaScript
\u56AF
Java
\u56AF
Json
\u56AF
Python
\u56AF
Perl
\x{56AF}
PHP
\x{56AF}
Ruby
\u{56AF}
Rust
\u{56AF}
Go
\u56AF

Web

CSS
\0056AF
HtmlDecimal
嚯
HtmlHexadecimal
嚯
Url
%E5%9A%AF

Code

MD5
9deb230dd73f82bc72657e9a81c63aa5
Sha1
0811ad6ddab246873df3f50ed6239dcac7eb23ee
Base64
5Zqv

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u56AF';
console.log(char);  // Output: 嚯

Java:

char c = '\u56AF';
System.out.println(c);  // Output: 嚯

JSON:

{"text": "\u56AF"}  // Value: 嚯

Python:

char = '\u56AF'
print(char)  # Output: 嚯

Perl:

my $char = "\x{56AF}";
print $char;  # Output: 嚯

PHP:

$char = "\x{56AF}";
echo $char;  // Output: 嚯

Ruby:

char = "\u{56AF}"
puts char  # Output: 嚯

Rust:

let c = '\u{56AF}';
println!("{}", c);  // Output: 嚯

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0056AF";  /* Display: 嚯 */
}

HTML Decimal:

<p>HTML decimal: &#22191;</p>  <!-- Display: 嚯 -->

HTML Hexadecimal:

<p>HTML hex: &#x56AF;</p>  <!-- Display: 嚯 -->

URL Encoding:

// 嚯 URL encoding
https://unicodefinder.com/search.php?query=%E5%9A%AF

Encodings

MD5:

9deb230dd73f82bc72657e9a81c63aa5

SHA1:

0811ad6ddab246873df3f50ed6239dcac7eb23ee

Base64:

5Zqv