Unicode Finder

"儈" U+5108(CJK UNIFIED IDEOGRAPH-5108)

U+5108
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5108

Programming

C
\u5108
JavaScript
\u5108
Java
\u5108
Json
\u5108
Python
\u5108
Perl
\x{5108}
PHP
\x{5108}
Ruby
\u{5108}
Rust
\u{5108}
Go
\u5108

Web

CSS
\005108
HtmlDecimal
儈
HtmlHexadecimal
儈
Url
%E5%84%88

Code

MD5
b070153be626dbc44b375a1293e2d487
Sha1
3ac933f396f104a3aadde19acda1c8ca7356b9d5
Base64
5YSI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5108';
console.log(char);  // Output: 儈

Java:

char c = '\u5108';
System.out.println(c);  // Output: 儈

JSON:

{"text": "\u5108"}  // Value: 儈

Python:

char = '\u5108'
print(char)  # Output: 儈

Perl:

my $char = "\x{5108}";
print $char;  # Output: 儈

PHP:

$char = "\x{5108}";
echo $char;  // Output: 儈

Ruby:

char = "\u{5108}"
puts char  # Output: 儈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005108";  /* Display: 儈 */
}

HTML Decimal:

<p>HTML decimal: &#20744;</p>  <!-- Display: 儈 -->

HTML Hexadecimal:

<p>HTML hex: &#x5108;</p>  <!-- Display: 儈 -->

URL Encoding:

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

Encodings

MD5:

b070153be626dbc44b375a1293e2d487

SHA1:

3ac933f396f104a3aadde19acda1c8ca7356b9d5

Base64:

5YSI