Unicode Finder

"谒" U+8C12(CJK UNIFIED IDEOGRAPH-8C12)

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

Programming

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

Web

CSS
\008C12
HtmlDecimal
谒
HtmlHexadecimal
谒
Url
%E8%B0%92

Code

MD5
783ee703c3671e0d4f55b9356bc36515
Sha1
472d78efc40e401104916687ef1dc557ef5ced65
Base64
6LCS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C12';
console.log(char);  // Output: 谒

Java:

char c = '\u8C12';
System.out.println(c);  // Output: 谒

JSON:

{"text": "\u8C12"}  // Value: 谒

Python:

char = '\u8C12'
print(char)  # Output: 谒

Perl:

my $char = "\x{8C12}";
print $char;  # Output: 谒

PHP:

$char = "\x{8C12}";
echo $char;  // Output: 谒

Ruby:

char = "\u{8C12}"
puts char  # Output: 谒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35858;</p>  <!-- Display: 谒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C12;</p>  <!-- Display: 谒 -->

URL Encoding:

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

Encodings

MD5:

783ee703c3671e0d4f55b9356bc36515

SHA1:

472d78efc40e401104916687ef1dc557ef5ced65

Base64:

6LCS