Unicode Finder

"訬" U+8A2C(CJK UNIFIED IDEOGRAPH-8A2C)

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

Programming

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

Web

CSS
\008A2C
HtmlDecimal
訬
HtmlHexadecimal
訬
Url
%E8%A8%AC

Code

MD5
f61949a6591e82d8e5a95346d7960eb5
Sha1
0cfb5c6427f0088a66d07c62a0bf0a1059d594fd
Base64
6Kis

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8A2C';
console.log(char);  // Output: 訬

Java:

char c = '\u8A2C';
System.out.println(c);  // Output: 訬

JSON:

{"text": "\u8A2C"}  // Value: 訬

Python:

char = '\u8A2C'
print(char)  # Output: 訬

Perl:

my $char = "\x{8A2C}";
print $char;  # Output: 訬

PHP:

$char = "\x{8A2C}";
echo $char;  // Output: 訬

Ruby:

char = "\u{8A2C}"
puts char  # Output: 訬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35372;</p>  <!-- Display: 訬 -->

HTML Hexadecimal:

<p>HTML hex: &#x8A2C;</p>  <!-- Display: 訬 -->

URL Encoding:

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

Encodings

MD5:

f61949a6591e82d8e5a95346d7960eb5

SHA1:

0cfb5c6427f0088a66d07c62a0bf0a1059d594fd

Base64:

6Kis