Unicode Finder

"誰" U+8AB0(CJK UNIFIED IDEOGRAPH-8AB0)

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

Programming

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

Web

CSS
\008AB0
HtmlDecimal
誰
HtmlHexadecimal
誰
Url
%E8%AA%B0

Code

MD5
e2ec67dbd63b4a13a591f469ca3edac9
Sha1
ad603e38da3b6c5fce3669581644081d5db9d0a8
Base64
6Kqw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8AB0';
console.log(char);  // Output: 誰

Java:

char c = '\u8AB0';
System.out.println(c);  // Output: 誰

JSON:

{"text": "\u8AB0"}  // Value: 誰

Python:

char = '\u8AB0'
print(char)  # Output: 誰

Perl:

my $char = "\x{8AB0}";
print $char;  # Output: 誰

PHP:

$char = "\x{8AB0}";
echo $char;  // Output: 誰

Ruby:

char = "\u{8AB0}"
puts char  # Output: 誰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35504;</p>  <!-- Display: 誰 -->

HTML Hexadecimal:

<p>HTML hex: &#x8AB0;</p>  <!-- Display: 誰 -->

URL Encoding:

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

Encodings

MD5:

e2ec67dbd63b4a13a591f469ca3edac9

SHA1:

ad603e38da3b6c5fce3669581644081d5db9d0a8

Base64:

6Kqw