Unicode Finder

"嫫" U+5AEB(CJK UNIFIED IDEOGRAPH-5AEB)

U+5AEB
Bloknaam
CJK Unified Ideographs
Naam
CJK UNIFIED IDEOGRAPH-5AEB

Programming

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

Web

CSS
\005AEB
HtmlDecimal
嫫
HtmlHexadecimal
嫫
Url
%E5%AB%AB

Code

MD5
89fd9733a4eca2e67bbd5b119a5b8930
Sha1
98f679642e032f1a11b262fd9a0c9f14214cdce8
Base64
5aur

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u5AEB';
console.log(char);  // Output: 嫫

Java:

char c = '\u5AEB';
System.out.println(c);  // Output: 嫫

JSON:

{"text": "\u5AEB"}  // Value: 嫫

Python:

char = '\u5AEB'
print(char)  # Output: 嫫

Perl:

my $char = "\x{5AEB}";
print $char;  # Output: 嫫

PHP:

$char = "\x{5AEB}";
echo $char;  // Output: 嫫

Ruby:

char = "\u{5AEB}"
puts char  # Output: 嫫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23275;</p>  <!-- Display: 嫫 -->

HTML Hexadecimal:

<p>HTML hex: &#x5AEB;</p>  <!-- Display: 嫫 -->

URL Encoding:

// 嫫 URL encoding
https://unicodefinder.com/search.php?query=%E5%AB%AB

Encodings

MD5:

89fd9733a4eca2e67bbd5b119a5b8930

SHA1:

98f679642e032f1a11b262fd9a0c9f14214cdce8

Base64:

5aur