Unicode Finder

"蠨" U+8828(CJK UNIFIED IDEOGRAPH-8828)

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

Programming

C
\u8828
JavaScript
\u8828
Java
\u8828
Json
\u8828
Python
\u8828
Perl
\x{8828}
PHP
\x{8828}
Ruby
\u{8828}
Rust
\u{8828}
Go
\u8828

Web

CSS
\008828
HtmlDecimal
蠨
HtmlHexadecimal
蠨
Url
%E8%A0%A8

Code

MD5
b52d6082644a05b84adc5c53979c41ad
Sha1
2b676e9f8c082b02989e20a8466c66538ee742eb
Base64
6KCo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8828';
console.log(char);  // Output: 蠨

Java:

char c = '\u8828';
System.out.println(c);  // Output: 蠨

JSON:

{"text": "\u8828"}  // Value: 蠨

Python:

char = '\u8828'
print(char)  # Output: 蠨

Perl:

my $char = "\x{8828}";
print $char;  # Output: 蠨

PHP:

$char = "\x{8828}";
echo $char;  // Output: 蠨

Ruby:

char = "\u{8828}"
puts char  # Output: 蠨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008828";  /* Display: 蠨 */
}

HTML Decimal:

<p>HTML decimal: &#34856;</p>  <!-- Display: 蠨 -->

HTML Hexadecimal:

<p>HTML hex: &#x8828;</p>  <!-- Display: 蠨 -->

URL Encoding:

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

Encodings

MD5:

b52d6082644a05b84adc5c53979c41ad

SHA1:

2b676e9f8c082b02989e20a8466c66538ee742eb

Base64:

6KCo