Unicode Finder

"婫" U+5A6B(CJK UNIFIED IDEOGRAPH-5A6B)

U+5A6B
Název Bloku
CJK Unified Ideographs
Název
CJK UNIFIED IDEOGRAPH-5A6B

Programming

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

Web

CSS
\005A6B
HtmlDecimal
婫
HtmlHexadecimal
婫
Url
%E5%A9%AB

Code

MD5
a35f34fe4d3680099b60a63fe7b1c239
Sha1
b9b7b1756698587b5c53c4542b215ee457846995
Base64
5amr

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u5A6B';
console.log(char);  // Output: 婫

Java:

char c = '\u5A6B';
System.out.println(c);  // Output: 婫

JSON:

{"text": "\u5A6B"}  // Value: 婫

Python:

char = '\u5A6B'
print(char)  # Output: 婫

Perl:

my $char = "\x{5A6B}";
print $char;  # Output: 婫

PHP:

$char = "\x{5A6B}";
echo $char;  // Output: 婫

Ruby:

char = "\u{5A6B}"
puts char  # Output: 婫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23147;</p>  <!-- Display: 婫 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A6B;</p>  <!-- Display: 婫 -->

URL Encoding:

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

Encodings

MD5:

a35f34fe4d3680099b60a63fe7b1c239

SHA1:

b9b7b1756698587b5c53c4542b215ee457846995

Base64:

5amr