Unicode Finder

"嘅" U+5605(CJK UNIFIED IDEOGRAPH-5605)

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

Programming

C
\u5605
JavaScript
\u5605
Java
\u5605
Json
\u5605
Python
\u5605
Perl
\x{5605}
PHP
\x{5605}
Ruby
\u{5605}
Rust
\u{5605}
Go
\u5605

Web

CSS
\005605
HtmlDecimal
嘅
HtmlHexadecimal
嘅
Url
%E5%98%85

Code

MD5
36fd46bd270f2eb7c7dee0190ee73c9e
Sha1
a37481d6f41db06e26e938bd8534d74eaac54de2
Base64
5ZiF

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5605';
console.log(char);  // Output: 嘅

Java:

char c = '\u5605';
System.out.println(c);  // Output: 嘅

JSON:

{"text": "\u5605"}  // Value: 嘅

Python:

char = '\u5605'
print(char)  # Output: 嘅

Perl:

my $char = "\x{5605}";
print $char;  # Output: 嘅

PHP:

$char = "\x{5605}";
echo $char;  // Output: 嘅

Ruby:

char = "\u{5605}"
puts char  # Output: 嘅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005605";  /* Display: 嘅 */
}

HTML Decimal:

<p>HTML decimal: &#22021;</p>  <!-- Display: 嘅 -->

HTML Hexadecimal:

<p>HTML hex: &#x5605;</p>  <!-- Display: 嘅 -->

URL Encoding:

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

Encodings

MD5:

36fd46bd270f2eb7c7dee0190ee73c9e

SHA1:

a37481d6f41db06e26e938bd8534d74eaac54de2

Base64:

5ZiF