Unicode Finder

"蠒" U+8812(CJK UNIFIED IDEOGRAPH-8812)

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

Programming

C
\u8812
JavaScript
\u8812
Java
\u8812
Json
\u8812
Python
\u8812
Perl
\x{8812}
PHP
\x{8812}
Ruby
\u{8812}
Rust
\u{8812}
Go
\u8812

Web

CSS
\008812
HtmlDecimal
蠒
HtmlHexadecimal
蠒
Url
%E8%A0%92

Code

MD5
123c1810f7691eeb47bea0be4d656e3e
Sha1
1d779d60155adc0218d385c133655c78bca13a72
Base64
6KCS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8812';
console.log(char);  // Output: 蠒

Java:

char c = '\u8812';
System.out.println(c);  // Output: 蠒

JSON:

{"text": "\u8812"}  // Value: 蠒

Python:

char = '\u8812'
print(char)  # Output: 蠒

Perl:

my $char = "\x{8812}";
print $char;  # Output: 蠒

PHP:

$char = "\x{8812}";
echo $char;  // Output: 蠒

Ruby:

char = "\u{8812}"
puts char  # Output: 蠒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008812";  /* Display: 蠒 */
}

HTML Decimal:

<p>HTML decimal: &#34834;</p>  <!-- Display: 蠒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8812;</p>  <!-- Display: 蠒 -->

URL Encoding:

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

Encodings

MD5:

123c1810f7691eeb47bea0be4d656e3e

SHA1:

1d779d60155adc0218d385c133655c78bca13a72

Base64:

6KCS