Unicode Finder

"婛" U+5A5B(CJK UNIFIED IDEOGRAPH-5A5B)

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

Programming

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

Web

CSS
\005A5B
HtmlDecimal
婛
HtmlHexadecimal
婛
Url
%E5%A9%9B

Code

MD5
f0a2a72d8ba9c354a85422ffe1696103
Sha1
c2c019a0801cdda52f5f31708522dfefb1ac7300
Base64
5amb

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u5A5B';
console.log(char);  // Output: 婛

Java:

char c = '\u5A5B';
System.out.println(c);  // Output: 婛

JSON:

{"text": "\u5A5B"}  // Value: 婛

Python:

char = '\u5A5B'
print(char)  # Output: 婛

Perl:

my $char = "\x{5A5B}";
print $char;  # Output: 婛

PHP:

$char = "\x{5A5B}";
echo $char;  // Output: 婛

Ruby:

char = "\u{5A5B}"
puts char  # Output: 婛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23131;</p>  <!-- Display: 婛 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A5B;</p>  <!-- Display: 婛 -->

URL Encoding:

// 婛 URL encoding
https://unicodefinder.com/search.php?query=%E5%A9%9B

Encodings

MD5:

f0a2a72d8ba9c354a85422ffe1696103

SHA1:

c2c019a0801cdda52f5f31708522dfefb1ac7300

Base64:

5amb