Unicode Finder

"訁" U+8A01(CJK UNIFIED IDEOGRAPH-8A01)

U+8A01
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8A01

Programming

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

Web

CSS
\008A01
HtmlDecimal
訁
HtmlHexadecimal
訁
Url
%E8%A8%81

Code

MD5
cbc436152a7c398798cc93af86e36908
Sha1
98528ea52aec5bbd0af9dc43efb44891256c0909
Base64
6KiB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8A01';
console.log(char);  // Output: 訁

Java:

char c = '\u8A01';
System.out.println(c);  // Output: 訁

JSON:

{"text": "\u8A01"}  // Value: 訁

Python:

char = '\u8A01'
print(char)  # Output: 訁

Perl:

my $char = "\x{8A01}";
print $char;  # Output: 訁

PHP:

$char = "\x{8A01}";
echo $char;  // Output: 訁

Ruby:

char = "\u{8A01}"
puts char  # Output: 訁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35329;</p>  <!-- Display: 訁 -->

HTML Hexadecimal:

<p>HTML hex: &#x8A01;</p>  <!-- Display: 訁 -->

URL Encoding:

// 訁 URL encoding
https://unicodefinder.com/search.php?query=%E8%A8%81

Encodings

MD5:

cbc436152a7c398798cc93af86e36908

SHA1:

98528ea52aec5bbd0af9dc43efb44891256c0909

Base64:

6KiB