Unicode Finder

"儐" U+5110(CJK UNIFIED IDEOGRAPH-5110)

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

Programming

C
\u5110
JavaScript
\u5110
Java
\u5110
Json
\u5110
Python
\u5110
Perl
\x{5110}
PHP
\x{5110}
Ruby
\u{5110}
Rust
\u{5110}
Go
\u5110

Web

CSS
\005110
HtmlDecimal
儐
HtmlHexadecimal
儐
Url
%E5%84%90

Code

MD5
3be9f84d08fb5ed6791b9cde382a6485
Sha1
0b97588d6d5bda54a4563646c5cf80ae6506d8b8
Base64
5YSQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5110';
console.log(char);  // Output: 儐

Java:

char c = '\u5110';
System.out.println(c);  // Output: 儐

JSON:

{"text": "\u5110"}  // Value: 儐

Python:

char = '\u5110'
print(char)  # Output: 儐

Perl:

my $char = "\x{5110}";
print $char;  # Output: 儐

PHP:

$char = "\x{5110}";
echo $char;  // Output: 儐

Ruby:

char = "\u{5110}"
puts char  # Output: 儐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005110";  /* Display: 儐 */
}

HTML Decimal:

<p>HTML decimal: &#20752;</p>  <!-- Display: 儐 -->

HTML Hexadecimal:

<p>HTML hex: &#x5110;</p>  <!-- Display: 儐 -->

URL Encoding:

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

Encodings

MD5:

3be9f84d08fb5ed6791b9cde382a6485

SHA1:

0b97588d6d5bda54a4563646c5cf80ae6506d8b8

Base64:

5YSQ