Unicode Finder

"諲" U+8AF2(CJK UNIFIED IDEOGRAPH-8AF2)

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

Programming

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

Web

CSS
\008AF2
HtmlDecimal
諲
HtmlHexadecimal
諲
Url
%E8%AB%B2

Code

MD5
10f4aee36c4927c86e2a53a67d6010fa
Sha1
89d1fdc9c2ee1ea4ffe15d9a9e01d92a16ac7eef
Base64
6Kuy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8AF2';
console.log(char);  // Output: 諲

Java:

char c = '\u8AF2';
System.out.println(c);  // Output: 諲

JSON:

{"text": "\u8AF2"}  // Value: 諲

Python:

char = '\u8AF2'
print(char)  # Output: 諲

Perl:

my $char = "\x{8AF2}";
print $char;  # Output: 諲

PHP:

$char = "\x{8AF2}";
echo $char;  // Output: 諲

Ruby:

char = "\u{8AF2}"
puts char  # Output: 諲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35570;</p>  <!-- Display: 諲 -->

HTML Hexadecimal:

<p>HTML hex: &#x8AF2;</p>  <!-- Display: 諲 -->

URL Encoding:

// 諲 URL encoding
https://unicodefinder.com/search.php?query=%E8%AB%B2

Encodings

MD5:

10f4aee36c4927c86e2a53a67d6010fa

SHA1:

89d1fdc9c2ee1ea4ffe15d9a9e01d92a16ac7eef

Base64:

6Kuy