Unicode Finder

"躭" U+8EAD(CJK UNIFIED IDEOGRAPH-8EAD)

U+8EAD
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8EAD

Programming

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

Web

CSS
\008EAD
HtmlDecimal
躭
HtmlHexadecimal
躭
Url
%E8%BA%AD

Code

MD5
3c009c46c6e86466e3b1306c93efb4a3
Sha1
323e9061acc271df9144c688c33da9ccad15f21b
Base64
6Lqt

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8EAD';
console.log(char);  // Output: 躭

Java:

char c = '\u8EAD';
System.out.println(c);  // Output: 躭

JSON:

{"text": "\u8EAD"}  // Value: 躭

Python:

char = '\u8EAD'
print(char)  # Output: 躭

Perl:

my $char = "\x{8EAD}";
print $char;  # Output: 躭

PHP:

$char = "\x{8EAD}";
echo $char;  // Output: 躭

Ruby:

char = "\u{8EAD}"
puts char  # Output: 躭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36525;</p>  <!-- Display: 躭 -->

HTML Hexadecimal:

<p>HTML hex: &#x8EAD;</p>  <!-- Display: 躭 -->

URL Encoding:

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

Encodings

MD5:

3c009c46c6e86466e3b1306c93efb4a3

SHA1:

323e9061acc271df9144c688c33da9ccad15f21b

Base64:

6Lqt