Unicode Finder

"谑" U+8C11(CJK UNIFIED IDEOGRAPH-8C11)

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

Programming

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

Web

CSS
\008C11
HtmlDecimal
谑
HtmlHexadecimal
谑
Url
%E8%B0%91

Code

MD5
135577ad2d17098a3bf9e6191a070ebb
Sha1
590db8a59c6f889df31b880fecbf6ae2a4e20f95
Base64
6LCR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C11';
console.log(char);  // Output: 谑

Java:

char c = '\u8C11';
System.out.println(c);  // Output: 谑

JSON:

{"text": "\u8C11"}  // Value: 谑

Python:

char = '\u8C11'
print(char)  # Output: 谑

Perl:

my $char = "\x{8C11}";
print $char;  # Output: 谑

PHP:

$char = "\x{8C11}";
echo $char;  // Output: 谑

Ruby:

char = "\u{8C11}"
puts char  # Output: 谑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35857;</p>  <!-- Display: 谑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C11;</p>  <!-- Display: 谑 -->

URL Encoding:

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

Encodings

MD5:

135577ad2d17098a3bf9e6191a070ebb

SHA1:

590db8a59c6f889df31b880fecbf6ae2a4e20f95

Base64:

6LCR