Unicode Finder

"蹜" U+8E5C(CJK UNIFIED IDEOGRAPH-8E5C)

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

Programming

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

Web

CSS
\008E5C
HtmlDecimal
蹜
HtmlHexadecimal
蹜
Url
%E8%B9%9C

Code

MD5
e26f642529069f05a7e877c06638262e
Sha1
3dc00aa2031e4905bf09f14f0bfabd45a8e6e758
Base64
6Lmc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8E5C';
console.log(char);  // Output: 蹜

Java:

char c = '\u8E5C';
System.out.println(c);  // Output: 蹜

JSON:

{"text": "\u8E5C"}  // Value: 蹜

Python:

char = '\u8E5C'
print(char)  # Output: 蹜

Perl:

my $char = "\x{8E5C}";
print $char;  # Output: 蹜

PHP:

$char = "\x{8E5C}";
echo $char;  // Output: 蹜

Ruby:

char = "\u{8E5C}"
puts char  # Output: 蹜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36444;</p>  <!-- Display: 蹜 -->

HTML Hexadecimal:

<p>HTML hex: &#x8E5C;</p>  <!-- Display: 蹜 -->

URL Encoding:

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

Encodings

MD5:

e26f642529069f05a7e877c06638262e

SHA1:

3dc00aa2031e4905bf09f14f0bfabd45a8e6e758

Base64:

6Lmc