Unicode Finder

"謒" U+8B12(CJK UNIFIED IDEOGRAPH-8B12)

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

Programming

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

Web

CSS
\008B12
HtmlDecimal
謒
HtmlHexadecimal
謒
Url
%E8%AC%92

Code

MD5
ea34f184e8805135e3f6c77eb6b62143
Sha1
21c42f18284d4637a8e6b7623b8c396e71f626c9
Base64
6KyS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8B12';
console.log(char);  // Output: 謒

Java:

char c = '\u8B12';
System.out.println(c);  // Output: 謒

JSON:

{"text": "\u8B12"}  // Value: 謒

Python:

char = '\u8B12'
print(char)  # Output: 謒

Perl:

my $char = "\x{8B12}";
print $char;  # Output: 謒

PHP:

$char = "\x{8B12}";
echo $char;  // Output: 謒

Ruby:

char = "\u{8B12}"
puts char  # Output: 謒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35602;</p>  <!-- Display: 謒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8B12;</p>  <!-- Display: 謒 -->

URL Encoding:

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

Encodings

MD5:

ea34f184e8805135e3f6c77eb6b62143

SHA1:

21c42f18284d4637a8e6b7623b8c396e71f626c9

Base64:

6KyS