Unicode Finder

"蹲" U+8E72(CJK UNIFIED IDEOGRAPH-8E72)

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

Programming

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

Web

CSS
\008E72
HtmlDecimal
蹲
HtmlHexadecimal
蹲
Url
%E8%B9%B2

Code

MD5
aac6570829c18ce57696fb5d89ecf7fb
Sha1
7f9d1373202f766351da70c0806a0dba3d3c0ebf
Base64
6Lmy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8E72';
console.log(char);  // Output: 蹲

Java:

char c = '\u8E72';
System.out.println(c);  // Output: 蹲

JSON:

{"text": "\u8E72"}  // Value: 蹲

Python:

char = '\u8E72'
print(char)  # Output: 蹲

Perl:

my $char = "\x{8E72}";
print $char;  # Output: 蹲

PHP:

$char = "\x{8E72}";
echo $char;  // Output: 蹲

Ruby:

char = "\u{8E72}"
puts char  # Output: 蹲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36466;</p>  <!-- Display: 蹲 -->

HTML Hexadecimal:

<p>HTML hex: &#x8E72;</p>  <!-- Display: 蹲 -->

URL Encoding:

// 蹲 URL encoding
https://unicodefinder.com/search.php?query=%E8%B9%B2

Encodings

MD5:

aac6570829c18ce57696fb5d89ecf7fb

SHA1:

7f9d1373202f766351da70c0806a0dba3d3c0ebf

Base64:

6Lmy