Unicode Finder

"蠑" U+8811(CJK UNIFIED IDEOGRAPH-8811)

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

Programming

C
\u8811
JavaScript
\u8811
Java
\u8811
Json
\u8811
Python
\u8811
Perl
\x{8811}
PHP
\x{8811}
Ruby
\u{8811}
Rust
\u{8811}
Go
\u8811

Web

CSS
\008811
HtmlDecimal
蠑
HtmlHexadecimal
蠑
Url
%E8%A0%91

Code

MD5
89cd58e1eed3bb78cecc9e88a40e49f5
Sha1
96e1e94debc4e483a29f344a5568ba5394ecc791
Base64
6KCR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8811';
console.log(char);  // Output: 蠑

Java:

char c = '\u8811';
System.out.println(c);  // Output: 蠑

JSON:

{"text": "\u8811"}  // Value: 蠑

Python:

char = '\u8811'
print(char)  # Output: 蠑

Perl:

my $char = "\x{8811}";
print $char;  # Output: 蠑

PHP:

$char = "\x{8811}";
echo $char;  // Output: 蠑

Ruby:

char = "\u{8811}"
puts char  # Output: 蠑

Rust:

let c = '\u{8811}';
println!("{}", c);  // Output: 蠑

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008811";  /* Display: 蠑 */
}

HTML Decimal:

<p>HTML decimal: &#34833;</p>  <!-- Display: 蠑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8811;</p>  <!-- Display: 蠑 -->

URL Encoding:

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

Encodings

MD5:

89cd58e1eed3bb78cecc9e88a40e49f5

SHA1:

96e1e94debc4e483a29f344a5568ba5394ecc791

Base64:

6KCR