Unicode Finder

"蠀" U+8800(CJK UNIFIED IDEOGRAPH-8800)

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

Programming

C
\u8800
JavaScript
\u8800
Java
\u8800
Json
\u8800
Python
\u8800
Perl
\x{8800}
PHP
\x{8800}
Ruby
\u{8800}
Rust
\u{8800}
Go
\u8800

Web

CSS
\008800
HtmlDecimal
蠀
HtmlHexadecimal
蠀
Url
%E8%A0%80

Code

MD5
ad88e5b94bbe05e677b5bf8b967471d6
Sha1
ac15281db2b6bce4486437f19aff850d9f40886c
Base64
6KCA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8800';
console.log(char);  // Output: 蠀

Java:

char c = '\u8800';
System.out.println(c);  // Output: 蠀

JSON:

{"text": "\u8800"}  // Value: 蠀

Python:

char = '\u8800'
print(char)  # Output: 蠀

Perl:

my $char = "\x{8800}";
print $char;  # Output: 蠀

PHP:

$char = "\x{8800}";
echo $char;  // Output: 蠀

Ruby:

char = "\u{8800}"
puts char  # Output: 蠀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008800";  /* Display: 蠀 */
}

HTML Decimal:

<p>HTML decimal: &#34816;</p>  <!-- Display: 蠀 -->

HTML Hexadecimal:

<p>HTML hex: &#x8800;</p>  <!-- Display: 蠀 -->

URL Encoding:

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

Encodings

MD5:

ad88e5b94bbe05e677b5bf8b967471d6

SHA1:

ac15281db2b6bce4486437f19aff850d9f40886c

Base64:

6KCA