Unicode Finder

"儨" U+5128(CJK UNIFIED IDEOGRAPH-5128)

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

Programming

C
\u5128
JavaScript
\u5128
Java
\u5128
Json
\u5128
Python
\u5128
Perl
\x{5128}
PHP
\x{5128}
Ruby
\u{5128}
Rust
\u{5128}
Go
\u5128

Web

CSS
\005128
HtmlDecimal
儨
HtmlHexadecimal
儨
Url
%E5%84%A8

Code

MD5
4bbde7ba5766225cc9f89db6ba3db6ce
Sha1
53246f194c5e80f9f8fbc67bec0b453ee9fe26a0
Base64
5YSo

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5128';
console.log(char);  // Output: 儨

Java:

char c = '\u5128';
System.out.println(c);  // Output: 儨

JSON:

{"text": "\u5128"}  // Value: 儨

Python:

char = '\u5128'
print(char)  # Output: 儨

Perl:

my $char = "\x{5128}";
print $char;  # Output: 儨

PHP:

$char = "\x{5128}";
echo $char;  // Output: 儨

Ruby:

char = "\u{5128}"
puts char  # Output: 儨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005128";  /* Display: 儨 */
}

HTML Decimal:

<p>HTML decimal: &#20776;</p>  <!-- Display: 儨 -->

HTML Hexadecimal:

<p>HTML hex: &#x5128;</p>  <!-- Display: 儨 -->

URL Encoding:

// 儨 URL encoding
https://unicodefinder.com/search.php?query=%E5%84%A8

Encodings

MD5:

4bbde7ba5766225cc9f89db6ba3db6ce

SHA1:

53246f194c5e80f9f8fbc67bec0b453ee9fe26a0

Base64:

5YSo