Unicode Finder

"婋" U+5A4B(CJK UNIFIED IDEOGRAPH-5A4B)

U+5A4B
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-5A4B

Programming

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

Web

CSS
\005A4B
HtmlDecimal
婋
HtmlHexadecimal
婋
Url
%E5%A9%8B

Code

MD5
6da096be75c678e1598c7246f8725f68
Sha1
a778656450ac830dbf524526ea6007d085f5cb8f
Base64
5amL

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5A4B';
console.log(char);  // Output: 婋

Java:

char c = '\u5A4B';
System.out.println(c);  // Output: 婋

JSON:

{"text": "\u5A4B"}  // Value: 婋

Python:

char = '\u5A4B'
print(char)  # Output: 婋

Perl:

my $char = "\x{5A4B}";
print $char;  # Output: 婋

PHP:

$char = "\x{5A4B}";
echo $char;  // Output: 婋

Ruby:

char = "\u{5A4B}"
puts char  # Output: 婋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23115;</p>  <!-- Display: 婋 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A4B;</p>  <!-- Display: 婋 -->

URL Encoding:

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

Encodings

MD5:

6da096be75c678e1598c7246f8725f68

SHA1:

a778656450ac830dbf524526ea6007d085f5cb8f

Base64:

5amL