Unicode Finder

"躯" U+8EAF(CJK UNIFIED IDEOGRAPH-8EAF)

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

Programming

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

Web

CSS
\008EAF
HtmlDecimal
躯
HtmlHexadecimal
躯
Url
%E8%BA%AF

Code

MD5
7d9f624d68bb22eabc3fb134b7aaa3b1
Sha1
2ad19d22d9df756318b3b76a70beef8ac57e32e7
Base64
6Lqv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8EAF';
console.log(char);  // Output: 躯

Java:

char c = '\u8EAF';
System.out.println(c);  // Output: 躯

JSON:

{"text": "\u8EAF"}  // Value: 躯

Python:

char = '\u8EAF'
print(char)  # Output: 躯

Perl:

my $char = "\x{8EAF}";
print $char;  # Output: 躯

PHP:

$char = "\x{8EAF}";
echo $char;  // Output: 躯

Ruby:

char = "\u{8EAF}"
puts char  # Output: 躯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36527;</p>  <!-- Display: 躯 -->

HTML Hexadecimal:

<p>HTML hex: &#x8EAF;</p>  <!-- Display: 躯 -->

URL Encoding:

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

Encodings

MD5:

7d9f624d68bb22eabc3fb134b7aaa3b1

SHA1:

2ad19d22d9df756318b3b76a70beef8ac57e32e7

Base64:

6Lqv