Unicode Finder

"嬲" U+5B32(CJK UNIFIED IDEOGRAPH-5B32)

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

Programming

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

Web

CSS
\005B32
HtmlDecimal
嬲
HtmlHexadecimal
嬲
Url
%E5%AC%B2

Code

MD5
c34e9233dcdaa890ccbcb265092b04a7
Sha1
2f209717494dc46536f403ff18b388cd9445c1c1
Base64
5ayy

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5B32';
console.log(char);  // Output: 嬲

Java:

char c = '\u5B32';
System.out.println(c);  // Output: 嬲

JSON:

{"text": "\u5B32"}  // Value: 嬲

Python:

char = '\u5B32'
print(char)  # Output: 嬲

Perl:

my $char = "\x{5B32}";
print $char;  # Output: 嬲

PHP:

$char = "\x{5B32}";
echo $char;  // Output: 嬲

Ruby:

char = "\u{5B32}"
puts char  # Output: 嬲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23346;</p>  <!-- Display: 嬲 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B32;</p>  <!-- Display: 嬲 -->

URL Encoding:

// 嬲 URL encoding
https://unicodefinder.com/search.php?query=%E5%AC%B2

Encodings

MD5:

c34e9233dcdaa890ccbcb265092b04a7

SHA1:

2f209717494dc46536f403ff18b388cd9445c1c1

Base64:

5ayy