Unicode Finder

"嘑" U+5611(CJK UNIFIED IDEOGRAPH-5611)

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

Programming

C
\u5611
JavaScript
\u5611
Java
\u5611
Json
\u5611
Python
\u5611
Perl
\x{5611}
PHP
\x{5611}
Ruby
\u{5611}
Rust
\u{5611}
Go
\u5611

Web

CSS
\005611
HtmlDecimal
嘑
HtmlHexadecimal
嘑
Url
%E5%98%91

Code

MD5
f6361b6b98552c5473cb35aa82a40e6d
Sha1
2c3e6aed98020263ea4e87aaf7d2a8504ba540b7
Base64
5ZiR

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5611';
console.log(char);  // Output: 嘑

Java:

char c = '\u5611';
System.out.println(c);  // Output: 嘑

JSON:

{"text": "\u5611"}  // Value: 嘑

Python:

char = '\u5611'
print(char)  # Output: 嘑

Perl:

my $char = "\x{5611}";
print $char;  # Output: 嘑

PHP:

$char = "\x{5611}";
echo $char;  // Output: 嘑

Ruby:

char = "\u{5611}"
puts char  # Output: 嘑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005611";  /* Display: 嘑 */
}

HTML Decimal:

<p>HTML decimal: &#22033;</p>  <!-- Display: 嘑 -->

HTML Hexadecimal:

<p>HTML hex: &#x5611;</p>  <!-- Display: 嘑 -->

URL Encoding:

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

Encodings

MD5:

f6361b6b98552c5473cb35aa82a40e6d

SHA1:

2c3e6aed98020263ea4e87aaf7d2a8504ba540b7

Base64:

5ZiR