Unicode Finder

"詍" U+8A4D(CJK UNIFIED IDEOGRAPH-8A4D)

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

Programming

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

Web

CSS
\008A4D
HtmlDecimal
詍
HtmlHexadecimal
詍
Url
%E8%A9%8D

Code

MD5
22f8561f3f9b60f67d1dd35b59474251
Sha1
c282e3c43e87aab00e23e81e1ac072fc9c481e2c
Base64
6KmN

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8A4D';
console.log(char);  // Output: 詍

Java:

char c = '\u8A4D';
System.out.println(c);  // Output: 詍

JSON:

{"text": "\u8A4D"}  // Value: 詍

Python:

char = '\u8A4D'
print(char)  # Output: 詍

Perl:

my $char = "\x{8A4D}";
print $char;  # Output: 詍

PHP:

$char = "\x{8A4D}";
echo $char;  // Output: 詍

Ruby:

char = "\u{8A4D}"
puts char  # Output: 詍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35405;</p>  <!-- Display: 詍 -->

HTML Hexadecimal:

<p>HTML hex: &#x8A4D;</p>  <!-- Display: 詍 -->

URL Encoding:

// 詍 URL encoding
https://unicodefinder.com/search.php?query=%E8%A9%8D

Encodings

MD5:

22f8561f3f9b60f67d1dd35b59474251

SHA1:

c282e3c43e87aab00e23e81e1ac072fc9c481e2c

Base64:

6KmN