Unicode Finder

"躮" U+8EAE(CJK UNIFIED IDEOGRAPH-8EAE)

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

Programming

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

Web

CSS
\008EAE
HtmlDecimal
躮
HtmlHexadecimal
躮
Url
%E8%BA%AE

Code

MD5
c13d2d35234de81ea94f6e91226c8ef7
Sha1
c79c25e5c0259c86f2c73c0a2851a1534514b91f
Base64
6Lqu

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8EAE';
console.log(char);  // Output: 躮

Java:

char c = '\u8EAE';
System.out.println(c);  // Output: 躮

JSON:

{"text": "\u8EAE"}  // Value: 躮

Python:

char = '\u8EAE'
print(char)  # Output: 躮

Perl:

my $char = "\x{8EAE}";
print $char;  # Output: 躮

PHP:

$char = "\x{8EAE}";
echo $char;  // Output: 躮

Ruby:

char = "\u{8EAE}"
puts char  # Output: 躮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36526;</p>  <!-- Display: 躮 -->

HTML Hexadecimal:

<p>HTML hex: &#x8EAE;</p>  <!-- Display: 躮 -->

URL Encoding:

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

Encodings

MD5:

c13d2d35234de81ea94f6e91226c8ef7

SHA1:

c79c25e5c0259c86f2c73c0a2851a1534514b91f

Base64:

6Lqu