Unicode Finder

"蠈" U+8808(CJK UNIFIED IDEOGRAPH-8808)

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

Programming

C
\u8808
JavaScript
\u8808
Java
\u8808
Json
\u8808
Python
\u8808
Perl
\x{8808}
PHP
\x{8808}
Ruby
\u{8808}
Rust
\u{8808}
Go
\u8808

Web

CSS
\008808
HtmlDecimal
蠈
HtmlHexadecimal
蠈
Url
%E8%A0%88

Code

MD5
fd2566bcf830c534226cdb9963a271f5
Sha1
34006fec782a053f5a3681d2209a78c86334a7dd
Base64
6KCI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8808';
console.log(char);  // Output: 蠈

Java:

char c = '\u8808';
System.out.println(c);  // Output: 蠈

JSON:

{"text": "\u8808"}  // Value: 蠈

Python:

char = '\u8808'
print(char)  # Output: 蠈

Perl:

my $char = "\x{8808}";
print $char;  # Output: 蠈

PHP:

$char = "\x{8808}";
echo $char;  // Output: 蠈

Ruby:

char = "\u{8808}"
puts char  # Output: 蠈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008808";  /* Display: 蠈 */
}

HTML Decimal:

<p>HTML decimal: &#34824;</p>  <!-- Display: 蠈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8808;</p>  <!-- Display: 蠈 -->

URL Encoding:

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

Encodings

MD5:

fd2566bcf830c534226cdb9963a271f5

SHA1:

34006fec782a053f5a3681d2209a78c86334a7dd

Base64:

6KCI