Unicode Finder

"嬱" U+5B31(CJK UNIFIED IDEOGRAPH-5B31)

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

Programming

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

Web

CSS
\005B31
HtmlDecimal
嬱
HtmlHexadecimal
嬱
Url
%E5%AC%B1

Code

MD5
96e82e49b35230df1f7b091b1f7db0d8
Sha1
3fd3836a07ddc38a59491ab61463772f14b26b2b
Base64
5ayx

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5B31';
console.log(char);  // Output: 嬱

Java:

char c = '\u5B31';
System.out.println(c);  // Output: 嬱

JSON:

{"text": "\u5B31"}  // Value: 嬱

Python:

char = '\u5B31'
print(char)  # Output: 嬱

Perl:

my $char = "\x{5B31}";
print $char;  # Output: 嬱

PHP:

$char = "\x{5B31}";
echo $char;  // Output: 嬱

Ruby:

char = "\u{5B31}"
puts char  # Output: 嬱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23345;</p>  <!-- Display: 嬱 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B31;</p>  <!-- Display: 嬱 -->

URL Encoding:

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

Encodings

MD5:

96e82e49b35230df1f7b091b1f7db0d8

SHA1:

3fd3836a07ddc38a59491ab61463772f14b26b2b

Base64:

5ayx