Unicode Finder

"蹌" U+8E4C(CJK UNIFIED IDEOGRAPH-8E4C)

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

Programming

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

Web

CSS
\008E4C
HtmlDecimal
蹌
HtmlHexadecimal
蹌
Url
%E8%B9%8C

Code

MD5
e3ebf703cc423cad5d99560557222abb
Sha1
330515cef3649cb1499d176185174377e1f14719
Base64
6LmM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8E4C';
console.log(char);  // Output: 蹌

Java:

char c = '\u8E4C';
System.out.println(c);  // Output: 蹌

JSON:

{"text": "\u8E4C"}  // Value: 蹌

Python:

char = '\u8E4C'
print(char)  # Output: 蹌

Perl:

my $char = "\x{8E4C}";
print $char;  # Output: 蹌

PHP:

$char = "\x{8E4C}";
echo $char;  // Output: 蹌

Ruby:

char = "\u{8E4C}"
puts char  # Output: 蹌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36428;</p>  <!-- Display: 蹌 -->

HTML Hexadecimal:

<p>HTML hex: &#x8E4C;</p>  <!-- Display: 蹌 -->

URL Encoding:

// 蹌 URL encoding
https://unicodefinder.com/search.php?query=%E8%B9%8C

Encodings

MD5:

e3ebf703cc423cad5d99560557222abb

SHA1:

330515cef3649cb1499d176185174377e1f14719

Base64:

6LmM