Unicode Finder

"婪" U+5A6A(CJK UNIFIED IDEOGRAPH-5A6A)

U+5A6A
Nom du Bloc
CJK Unified Ideographs
Nom
CJK UNIFIED IDEOGRAPH-5A6A

Programming

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

Web

CSS
\005A6A
HtmlDecimal
婪
HtmlHexadecimal
婪
Url
%E5%A9%AA

Code

MD5
8121cd0a29a0af5389760a775d015633
Sha1
0afe4540808931bfd0e6acae5c4fbb5fba49854f
Base64
5amq

Exemples d'Utilisation

Programming Languages

C:

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

JavaScript:

const char = '\u5A6A';
console.log(char);  // Output: 婪

Java:

char c = '\u5A6A';
System.out.println(c);  // Output: 婪

JSON:

{"text": "\u5A6A"}  // Value: 婪

Python:

char = '\u5A6A'
print(char)  # Output: 婪

Perl:

my $char = "\x{5A6A}";
print $char;  # Output: 婪

PHP:

$char = "\x{5A6A}";
echo $char;  // Output: 婪

Ruby:

char = "\u{5A6A}"
puts char  # Output: 婪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23146;</p>  <!-- Display: 婪 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A6A;</p>  <!-- Display: 婪 -->

URL Encoding:

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

Encodings

MD5:

8121cd0a29a0af5389760a775d015633

SHA1:

0afe4540808931bfd0e6acae5c4fbb5fba49854f

Base64:

5amq