Unicode Finder

"訜" U+8A1C(CJK UNIFIED IDEOGRAPH-8A1C)

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

Programming

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

Web

CSS
\008A1C
HtmlDecimal
訜
HtmlHexadecimal
訜
Url
%E8%A8%9C

Code

MD5
a0f1301dfb85d5f06a46eb8dbab63839
Sha1
7b4c5bbd2b65b40daf03c6005846aff266391996
Base64
6Kic

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8A1C';
console.log(char);  // Output: 訜

Java:

char c = '\u8A1C';
System.out.println(c);  // Output: 訜

JSON:

{"text": "\u8A1C"}  // Value: 訜

Python:

char = '\u8A1C'
print(char)  # Output: 訜

Perl:

my $char = "\x{8A1C}";
print $char;  # Output: 訜

PHP:

$char = "\x{8A1C}";
echo $char;  // Output: 訜

Ruby:

char = "\u{8A1C}"
puts char  # Output: 訜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35356;</p>  <!-- Display: 訜 -->

HTML Hexadecimal:

<p>HTML hex: &#x8A1C;</p>  <!-- Display: 訜 -->

URL Encoding:

// 訜 URL encoding
https://unicodefinder.com/search.php?query=%E8%A8%9C

Encodings

MD5:

a0f1301dfb85d5f06a46eb8dbab63839

SHA1:

7b4c5bbd2b65b40daf03c6005846aff266391996

Base64:

6Kic