Unicode Finder

"蠂" U+8802(CJK UNIFIED IDEOGRAPH-8802)

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

Programming

C
\u8802
JavaScript
\u8802
Java
\u8802
Json
\u8802
Python
\u8802
Perl
\x{8802}
PHP
\x{8802}
Ruby
\u{8802}
Rust
\u{8802}
Go
\u8802

Web

CSS
\008802
HtmlDecimal
蠂
HtmlHexadecimal
蠂
Url
%E8%A0%82

Code

MD5
522524ddd3aead0558980288650c5f7c
Sha1
81b0e1569480db834af4f9e013c5d3d5ec047e85
Base64
6KCC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8802';
console.log(char);  // Output: 蠂

Java:

char c = '\u8802';
System.out.println(c);  // Output: 蠂

JSON:

{"text": "\u8802"}  // Value: 蠂

Python:

char = '\u8802'
print(char)  # Output: 蠂

Perl:

my $char = "\x{8802}";
print $char;  # Output: 蠂

PHP:

$char = "\x{8802}";
echo $char;  // Output: 蠂

Ruby:

char = "\u{8802}"
puts char  # Output: 蠂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008802";  /* Display: 蠂 */
}

HTML Decimal:

<p>HTML decimal: &#34818;</p>  <!-- Display: 蠂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8802;</p>  <!-- Display: 蠂 -->

URL Encoding:

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

Encodings

MD5:

522524ddd3aead0558980288650c5f7c

SHA1:

81b0e1569480db834af4f9e013c5d3d5ec047e85

Base64:

6KCC