Unicode Finder

"儑" U+5111(CJK UNIFIED IDEOGRAPH-5111)

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

Programming

C
\u5111
JavaScript
\u5111
Java
\u5111
Json
\u5111
Python
\u5111
Perl
\x{5111}
PHP
\x{5111}
Ruby
\u{5111}
Rust
\u{5111}
Go
\u5111

Web

CSS
\005111
HtmlDecimal
儑
HtmlHexadecimal
儑
Url
%E5%84%91

Code

MD5
1fd85bc4e0ebf33853046f15ad368b68
Sha1
fa955ee7fd6519a1241044b3bf43e3949553da93
Base64
5YSR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5111';
console.log(char);  // Output: 儑

Java:

char c = '\u5111';
System.out.println(c);  // Output: 儑

JSON:

{"text": "\u5111"}  // Value: 儑

Python:

char = '\u5111'
print(char)  # Output: 儑

Perl:

my $char = "\x{5111}";
print $char;  # Output: 儑

PHP:

$char = "\x{5111}";
echo $char;  // Output: 儑

Ruby:

char = "\u{5111}"
puts char  # Output: 儑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005111";  /* Display: 儑 */
}

HTML Decimal:

<p>HTML decimal: &#20753;</p>  <!-- Display: 儑 -->

HTML Hexadecimal:

<p>HTML hex: &#x5111;</p>  <!-- Display: 儑 -->

URL Encoding:

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

Encodings

MD5:

1fd85bc4e0ebf33853046f15ad368b68

SHA1:

fa955ee7fd6519a1241044b3bf43e3949553da93

Base64:

5YSR