Unicode Finder

"验" U+9A8C(CJK UNIFIED IDEOGRAPH-9A8C)

U+9A8C
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9A8C

Programming

C
\u9A8C
JavaScript
\u9A8C
Java
\u9A8C
Json
\u9A8C
Python
\u9A8C
Perl
\x{9A8C}
PHP
\x{9A8C}
Ruby
\u{9A8C}
Rust
\u{9A8C}
Go
\u9A8C

Web

CSS
\009A8C
HtmlDecimal
验
HtmlHexadecimal
验
Url
%E9%AA%8C

Code

MD5
570e0eae2903b81fe1c211991b37995d
Sha1
82f2ad356e308494f66aab830eddd9955dd46a1a
Base64
6aqM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9A8C';
console.log(char);  // Output: 验

Java:

char c = '\u9A8C';
System.out.println(c);  // Output: 验

JSON:

{"text": "\u9A8C"}  // Value: 验

Python:

char = '\u9A8C'
print(char)  # Output: 验

Perl:

my $char = "\x{9A8C}";
print $char;  # Output: 验

PHP:

$char = "\x{9A8C}";
echo $char;  // Output: 验

Ruby:

char = "\u{9A8C}"
puts char  # Output: 验

Rust:

let c = '\u{9A8C}';
println!("{}", c);  // Output: 验

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009A8C";  /* Display: 验 */
}

HTML Decimal:

<p>HTML decimal: &#39564;</p>  <!-- Display: 验 -->

HTML Hexadecimal:

<p>HTML hex: &#x9A8C;</p>  <!-- Display: 验 -->

URL Encoding:

// 验 URL encoding
https://unicodefinder.com/search.php?query=%E9%AA%8C

Encodings

MD5:

570e0eae2903b81fe1c211991b37995d

SHA1:

82f2ad356e308494f66aab830eddd9955dd46a1a

Base64:

6aqM