Unicode Finder

"嘤" U+5624(CJK UNIFIED IDEOGRAPH-5624)

U+5624
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-5624

Programming

C
\u5624
JavaScript
\u5624
Java
\u5624
Json
\u5624
Python
\u5624
Perl
\x{5624}
PHP
\x{5624}
Ruby
\u{5624}
Rust
\u{5624}
Go
\u5624

Web

CSS
\005624
HtmlDecimal
嘤
HtmlHexadecimal
嘤
Url
%E5%98%A4

Code

MD5
0902ccc1c53854b6385af1e43b15964c
Sha1
e47ac32f70a0551ed6ec94a7506e32e25f80f108
Base64
5Zik

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5624';
console.log(char);  // Output: 嘤

Java:

char c = '\u5624';
System.out.println(c);  // Output: 嘤

JSON:

{"text": "\u5624"}  // Value: 嘤

Python:

char = '\u5624'
print(char)  # Output: 嘤

Perl:

my $char = "\x{5624}";
print $char;  # Output: 嘤

PHP:

$char = "\x{5624}";
echo $char;  // Output: 嘤

Ruby:

char = "\u{5624}"
puts char  # Output: 嘤

Rust:

let c = '\u{5624}';
println!("{}", c);  // Output: 嘤

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005624";  /* Display: 嘤 */
}

HTML Decimal:

<p>HTML decimal: &#22052;</p>  <!-- Display: 嘤 -->

HTML Hexadecimal:

<p>HTML hex: &#x5624;</p>  <!-- Display: 嘤 -->

URL Encoding:

// 嘤 URL encoding
https://unicodefinder.com/search.php?query=%E5%98%A4

Encodings

MD5:

0902ccc1c53854b6385af1e43b15964c

SHA1:

e47ac32f70a0551ed6ec94a7506e32e25f80f108

Base64:

5Zik