Unicode Finder

"誋" U+8A8B(CJK UNIFIED IDEOGRAPH-8A8B)

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

Programming

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

Web

CSS
\008A8B
HtmlDecimal
誋
HtmlHexadecimal
誋
Url
%E8%AA%8B

Code

MD5
c786cc6fa08cb67bfe56dd3d96253354
Sha1
650d02ae15e6ae0c0a12edb77d79b61e9622c24e
Base64
6KqL

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8A8B';
console.log(char);  // Output: 誋

Java:

char c = '\u8A8B';
System.out.println(c);  // Output: 誋

JSON:

{"text": "\u8A8B"}  // Value: 誋

Python:

char = '\u8A8B'
print(char)  # Output: 誋

Perl:

my $char = "\x{8A8B}";
print $char;  # Output: 誋

PHP:

$char = "\x{8A8B}";
echo $char;  // Output: 誋

Ruby:

char = "\u{8A8B}"
puts char  # Output: 誋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35467;</p>  <!-- Display: 誋 -->

HTML Hexadecimal:

<p>HTML hex: &#x8A8B;</p>  <!-- Display: 誋 -->

URL Encoding:

// 誋 URL encoding
https://unicodefinder.com/search.php?query=%E8%AA%8B

Encodings

MD5:

c786cc6fa08cb67bfe56dd3d96253354

SHA1:

650d02ae15e6ae0c0a12edb77d79b61e9622c24e

Base64:

6KqL