Unicode Finder

"訋" U+8A0B(CJK UNIFIED IDEOGRAPH-8A0B)

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

Programming

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

Web

CSS
\008A0B
HtmlDecimal
訋
HtmlHexadecimal
訋
Url
%E8%A8%8B

Code

MD5
7f819494034abe5457308f9ee7ae176e
Sha1
6e85b4607d6426ff8904d028d4f621755954ab65
Base64
6KiL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8A0B';
console.log(char);  // Output: 訋

Java:

char c = '\u8A0B';
System.out.println(c);  // Output: 訋

JSON:

{"text": "\u8A0B"}  // Value: 訋

Python:

char = '\u8A0B'
print(char)  # Output: 訋

Perl:

my $char = "\x{8A0B}";
print $char;  # Output: 訋

PHP:

$char = "\x{8A0B}";
echo $char;  // Output: 訋

Ruby:

char = "\u{8A0B}"
puts char  # Output: 訋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35339;</p>  <!-- Display: 訋 -->

HTML Hexadecimal:

<p>HTML hex: &#x8A0B;</p>  <!-- Display: 訋 -->

URL Encoding:

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

Encodings

MD5:

7f819494034abe5457308f9ee7ae176e

SHA1:

6e85b4607d6426ff8904d028d4f621755954ab65

Base64:

6KiL