Unicode Finder

"蠇" U+8807(CJK UNIFIED IDEOGRAPH-8807)

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

Programming

C
\u8807
JavaScript
\u8807
Java
\u8807
Json
\u8807
Python
\u8807
Perl
\x{8807}
PHP
\x{8807}
Ruby
\u{8807}
Rust
\u{8807}
Go
\u8807

Web

CSS
\008807
HtmlDecimal
蠇
HtmlHexadecimal
蠇
Url
%E8%A0%87

Code

MD5
eb55e07d5899d643549064bebbb57028
Sha1
0bd9019b89facde178d04a240143d89b6c343266
Base64
6KCH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8807';
console.log(char);  // Output: 蠇

Java:

char c = '\u8807';
System.out.println(c);  // Output: 蠇

JSON:

{"text": "\u8807"}  // Value: 蠇

Python:

char = '\u8807'
print(char)  # Output: 蠇

Perl:

my $char = "\x{8807}";
print $char;  # Output: 蠇

PHP:

$char = "\x{8807}";
echo $char;  // Output: 蠇

Ruby:

char = "\u{8807}"
puts char  # Output: 蠇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008807";  /* Display: 蠇 */
}

HTML Decimal:

<p>HTML decimal: &#34823;</p>  <!-- Display: 蠇 -->

HTML Hexadecimal:

<p>HTML hex: &#x8807;</p>  <!-- Display: 蠇 -->

URL Encoding:

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

Encodings

MD5:

eb55e07d5899d643549064bebbb57028

SHA1:

0bd9019b89facde178d04a240143d89b6c343266

Base64:

6KCH