Unicode Finder

"婭" U+5A6D(CJK UNIFIED IDEOGRAPH-5A6D)

U+5A6D
Όνομα Μπλοκ
CJK Unified Ideographs
Όνομα
CJK UNIFIED IDEOGRAPH-5A6D

Programming

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

Web

CSS
\005A6D
HtmlDecimal
婭
HtmlHexadecimal
婭
Url
%E5%A9%AD

Code

MD5
80a68eb3c9ed3c70589097413cdbefa9
Sha1
0ced5d1111df008df90cf2a6603d8fcdd3f43541
Base64
5amt

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u5A6D';
console.log(char);  // Output: 婭

Java:

char c = '\u5A6D';
System.out.println(c);  // Output: 婭

JSON:

{"text": "\u5A6D"}  // Value: 婭

Python:

char = '\u5A6D'
print(char)  # Output: 婭

Perl:

my $char = "\x{5A6D}";
print $char;  # Output: 婭

PHP:

$char = "\x{5A6D}";
echo $char;  // Output: 婭

Ruby:

char = "\u{5A6D}"
puts char  # Output: 婭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23149;</p>  <!-- Display: 婭 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A6D;</p>  <!-- Display: 婭 -->

URL Encoding:

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

Encodings

MD5:

80a68eb3c9ed3c70589097413cdbefa9

SHA1:

0ced5d1111df008df90cf2a6603d8fcdd3f43541

Base64:

5amt