Unicode Finder

"婏" U+5A4F(CJK UNIFIED IDEOGRAPH-5A4F)

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

Programming

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

Web

CSS
\005A4F
HtmlDecimal
婏
HtmlHexadecimal
婏
Url
%E5%A9%8F

Code

MD5
8d1afa091ea64e39bb4cf23c3e4d28eb
Sha1
a0a8c6757b854934bb00cd041c003976b3489f56
Base64
5amP

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5A4F';
console.log(char);  // Output: 婏

Java:

char c = '\u5A4F';
System.out.println(c);  // Output: 婏

JSON:

{"text": "\u5A4F"}  // Value: 婏

Python:

char = '\u5A4F'
print(char)  # Output: 婏

Perl:

my $char = "\x{5A4F}";
print $char;  # Output: 婏

PHP:

$char = "\x{5A4F}";
echo $char;  // Output: 婏

Ruby:

char = "\u{5A4F}"
puts char  # Output: 婏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23119;</p>  <!-- Display: 婏 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A4F;</p>  <!-- Display: 婏 -->

URL Encoding:

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

Encodings

MD5:

8d1afa091ea64e39bb4cf23c3e4d28eb

SHA1:

a0a8c6757b854934bb00cd041c003976b3489f56

Base64:

5amP