Unicode Finder

"誫" U+8AAB(CJK UNIFIED IDEOGRAPH-8AAB)

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

Programming

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

Web

CSS
\008AAB
HtmlDecimal
誫
HtmlHexadecimal
誫
Url
%E8%AA%AB

Code

MD5
f1b71345b6a541ade755076df73a91ee
Sha1
35766208ad6455434fc869f76e6a2ffa85964fee
Base64
6Kqr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8AAB';
console.log(char);  // Output: 誫

Java:

char c = '\u8AAB';
System.out.println(c);  // Output: 誫

JSON:

{"text": "\u8AAB"}  // Value: 誫

Python:

char = '\u8AAB'
print(char)  # Output: 誫

Perl:

my $char = "\x{8AAB}";
print $char;  # Output: 誫

PHP:

$char = "\x{8AAB}";
echo $char;  // Output: 誫

Ruby:

char = "\u{8AAB}"
puts char  # Output: 誫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35499;</p>  <!-- Display: 誫 -->

HTML Hexadecimal:

<p>HTML hex: &#x8AAB;</p>  <!-- Display: 誫 -->

URL Encoding:

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

Encodings

MD5:

f1b71345b6a541ade755076df73a91ee

SHA1:

35766208ad6455434fc869f76e6a2ffa85964fee

Base64:

6Kqr