Unicode Finder

"躈" U+8E88(CJK UNIFIED IDEOGRAPH-8E88)

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

Programming

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

Web

CSS
\008E88
HtmlDecimal
躈
HtmlHexadecimal
躈
Url
%E8%BA%88

Code

MD5
a1b5cb09ad915a8ee6c8bdcf7152df7f
Sha1
2a721d088b41b815dfeced013addc4707d63fd4b
Base64
6LqI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8E88';
console.log(char);  // Output: 躈

Java:

char c = '\u8E88';
System.out.println(c);  // Output: 躈

JSON:

{"text": "\u8E88"}  // Value: 躈

Python:

char = '\u8E88'
print(char)  # Output: 躈

Perl:

my $char = "\x{8E88}";
print $char;  # Output: 躈

PHP:

$char = "\x{8E88}";
echo $char;  // Output: 躈

Ruby:

char = "\u{8E88}"
puts char  # Output: 躈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36488;</p>  <!-- Display: 躈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8E88;</p>  <!-- Display: 躈 -->

URL Encoding:

// 躈 URL encoding
https://unicodefinder.com/search.php?query=%E8%BA%88

Encodings

MD5:

a1b5cb09ad915a8ee6c8bdcf7152df7f

SHA1:

2a721d088b41b815dfeced013addc4707d63fd4b

Base64:

6LqI