Unicode Finder

"嚈" U+5688(CJK UNIFIED IDEOGRAPH-5688)

U+5688
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5688

Programming

C
\u5688
JavaScript
\u5688
Java
\u5688
Json
\u5688
Python
\u5688
Perl
\x{5688}
PHP
\x{5688}
Ruby
\u{5688}
Rust
\u{5688}
Go
\u5688

Web

CSS
\005688
HtmlDecimal
嚈
HtmlHexadecimal
嚈
Url
%E5%9A%88

Code

MD5
1fa9c51d7be57edb0aca6963b575a068
Sha1
ed008b3c2d36cc6902b3bdc0a28d713e760b696e
Base64
5ZqI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5688';
console.log(char);  // Output: 嚈

Java:

char c = '\u5688';
System.out.println(c);  // Output: 嚈

JSON:

{"text": "\u5688"}  // Value: 嚈

Python:

char = '\u5688'
print(char)  # Output: 嚈

Perl:

my $char = "\x{5688}";
print $char;  # Output: 嚈

PHP:

$char = "\x{5688}";
echo $char;  // Output: 嚈

Ruby:

char = "\u{5688}"
puts char  # Output: 嚈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005688";  /* Display: 嚈 */
}

HTML Decimal:

<p>HTML decimal: &#22152;</p>  <!-- Display: 嚈 -->

HTML Hexadecimal:

<p>HTML hex: &#x5688;</p>  <!-- Display: 嚈 -->

URL Encoding:

// 嚈 URL encoding
https://unicodefinder.com/search.php?query=%E5%9A%88

Encodings

MD5:

1fa9c51d7be57edb0aca6963b575a068

SHA1:

ed008b3c2d36cc6902b3bdc0a28d713e760b696e

Base64:

5ZqI