Unicode Finder

"踑" U+8E11(CJK UNIFIED IDEOGRAPH-8E11)

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

Programming

C
\u8E11
JavaScript
\u8E11
Java
\u8E11
Json
\u8E11
Python
\u8E11
Perl
\x{8E11}
PHP
\x{8E11}
Ruby
\u{8E11}
Rust
\u{8E11}
Go
\u8E11

Web

CSS
\008E11
HtmlDecimal
踑
HtmlHexadecimal
踑
Url
%E8%B8%91

Code

MD5
21d0113e9e7cb69f6b76230bb74ef4bb
Sha1
784b40f2c2dd61721234da36ffcc013fc07aaf1a
Base64
6LiR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8E11';
console.log(char);  // Output: 踑

Java:

char c = '\u8E11';
System.out.println(c);  // Output: 踑

JSON:

{"text": "\u8E11"}  // Value: 踑

Python:

char = '\u8E11'
print(char)  # Output: 踑

Perl:

my $char = "\x{8E11}";
print $char;  # Output: 踑

PHP:

$char = "\x{8E11}";
echo $char;  // Output: 踑

Ruby:

char = "\u{8E11}"
puts char  # Output: 踑

Rust:

let c = '\u{8E11}';
println!("{}", c);  // Output: 踑

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008E11";  /* Display: 踑 */
}

HTML Decimal:

<p>HTML decimal: &#36369;</p>  <!-- Display: 踑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8E11;</p>  <!-- Display: 踑 -->

URL Encoding:

// 踑 URL encoding
https://unicodefinder.com/search.php?query=%E8%B8%91

Encodings

MD5:

21d0113e9e7cb69f6b76230bb74ef4bb

SHA1:

784b40f2c2dd61721234da36ffcc013fc07aaf1a

Base64:

6LiR