Unicode Finder

"蠓" U+8813(CJK UNIFIED IDEOGRAPH-8813)

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

Programming

C
\u8813
JavaScript
\u8813
Java
\u8813
Json
\u8813
Python
\u8813
Perl
\x{8813}
PHP
\x{8813}
Ruby
\u{8813}
Rust
\u{8813}
Go
\u8813

Web

CSS
\008813
HtmlDecimal
蠓
HtmlHexadecimal
蠓
Url
%E8%A0%93

Code

MD5
0613355082b5f1d6b8781eba00c900f3
Sha1
bedeb5c01d8b072deaa68f36d96aea563781b376
Base64
6KCT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8813';
console.log(char);  // Output: 蠓

Java:

char c = '\u8813';
System.out.println(c);  // Output: 蠓

JSON:

{"text": "\u8813"}  // Value: 蠓

Python:

char = '\u8813'
print(char)  # Output: 蠓

Perl:

my $char = "\x{8813}";
print $char;  # Output: 蠓

PHP:

$char = "\x{8813}";
echo $char;  // Output: 蠓

Ruby:

char = "\u{8813}"
puts char  # Output: 蠓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008813";  /* Display: 蠓 */
}

HTML Decimal:

<p>HTML decimal: &#34835;</p>  <!-- Display: 蠓 -->

HTML Hexadecimal:

<p>HTML hex: &#x8813;</p>  <!-- Display: 蠓 -->

URL Encoding:

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

Encodings

MD5:

0613355082b5f1d6b8781eba00c900f3

SHA1:

bedeb5c01d8b072deaa68f36d96aea563781b376

Base64:

6KCT