Unicode Finder

"蹖" U+8E56(CJK UNIFIED IDEOGRAPH-8E56)

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

Programming

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

Web

CSS
\008E56
HtmlDecimal
蹖
HtmlHexadecimal
蹖
Url
%E8%B9%96

Code

MD5
1af5fcb013773c48f57dc3251a2ce8f5
Sha1
e47b043236041f2fd5e33a0a197f2bcba137c3df
Base64
6LmW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8E56';
console.log(char);  // Output: 蹖

Java:

char c = '\u8E56';
System.out.println(c);  // Output: 蹖

JSON:

{"text": "\u8E56"}  // Value: 蹖

Python:

char = '\u8E56'
print(char)  # Output: 蹖

Perl:

my $char = "\x{8E56}";
print $char;  # Output: 蹖

PHP:

$char = "\x{8E56}";
echo $char;  // Output: 蹖

Ruby:

char = "\u{8E56}"
puts char  # Output: 蹖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36438;</p>  <!-- Display: 蹖 -->

HTML Hexadecimal:

<p>HTML hex: &#x8E56;</p>  <!-- Display: 蹖 -->

URL Encoding:

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

Encodings

MD5:

1af5fcb013773c48f57dc3251a2ce8f5

SHA1:

e47b043236041f2fd5e33a0a197f2bcba137c3df

Base64:

6LmW