Unicode Finder

"嬿" U+5B3F(CJK UNIFIED IDEOGRAPH-5B3F)

嬿
U+5B3F
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-5B3F

Programming

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

Web

CSS
\005B3F
HtmlDecimal
嬿
HtmlHexadecimal
嬿
Url
%E5%AC%BF

Code

MD5
84ad299507a946829047192accac0efb
Sha1
7ed9fd29d185203221fe9e81dd015d489fad1931
Base64
5ay/

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5B3F';
console.log(char);  // Output: 嬿

Java:

char c = '\u5B3F';
System.out.println(c);  // Output: 嬿

JSON:

{"text": "\u5B3F"}  // Value: 嬿

Python:

char = '\u5B3F'
print(char)  # Output: 嬿

Perl:

my $char = "\x{5B3F}";
print $char;  # Output: 嬿

PHP:

$char = "\x{5B3F}";
echo $char;  // Output: 嬿

Ruby:

char = "\u{5B3F}"
puts char  # Output: 嬿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23359;</p>  <!-- Display: 嬿 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B3F;</p>  <!-- Display: 嬿 -->

URL Encoding:

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

Encodings

MD5:

84ad299507a946829047192accac0efb

SHA1:

7ed9fd29d185203221fe9e81dd015d489fad1931

Base64:

5ay/