Unicode Finder

"婲" U+5A72(CJK UNIFIED IDEOGRAPH-5A72)

U+5A72
Nume Bloc
CJK Unified Ideographs
Nume
CJK UNIFIED IDEOGRAPH-5A72

Programming

C
\u5A72
JavaScript
\u5A72
Java
\u5A72
Json
\u5A72
Python
\u5A72
Perl
\x{5A72}
PHP
\x{5A72}
Ruby
\u{5A72}
Rust
\u{5A72}
Go
\u5A72

Web

CSS
\005A72
HtmlDecimal
婲
HtmlHexadecimal
婲
Url
%E5%A9%B2

Code

MD5
d07af5e5fb8ffbd938ce11431f9ba9c4
Sha1
a9afb053c75714daf1db8fc6c182f4f8c88f8b62
Base64
5amy

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u5A72';
console.log(char);  // Output: 婲

Java:

char c = '\u5A72';
System.out.println(c);  // Output: 婲

JSON:

{"text": "\u5A72"}  // Value: 婲

Python:

char = '\u5A72'
print(char)  # Output: 婲

Perl:

my $char = "\x{5A72}";
print $char;  # Output: 婲

PHP:

$char = "\x{5A72}";
echo $char;  // Output: 婲

Ruby:

char = "\u{5A72}"
puts char  # Output: 婲

Rust:

let c = '\u{5A72}';
println!("{}", c);  // Output: 婲

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005A72";  /* Display: 婲 */
}

HTML Decimal:

<p>HTML decimal: &#23154;</p>  <!-- Display: 婲 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A72;</p>  <!-- Display: 婲 -->

URL Encoding:

// 婲 URL encoding
https://unicodefinder.com/search.php?query=%E5%A9%B2

Encodings

MD5:

d07af5e5fb8ffbd938ce11431f9ba9c4

SHA1:

a9afb053c75714daf1db8fc6c182f4f8c88f8b62

Base64:

5amy