Unicode Finder

"蓢" U+84E2(CJK UNIFIED IDEOGRAPH-84E2)

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

Programming

C
\u84E2
JavaScript
\u84E2
Java
\u84E2
Json
\u84E2
Python
\u84E2
Perl
\x{84E2}
PHP
\x{84E2}
Ruby
\u{84E2}
Rust
\u{84E2}
Go
\u84E2

Web

CSS
\0084E2
HtmlDecimal
蓢
HtmlHexadecimal
蓢
Url
%E8%93%A2

Code

MD5
bf0ee9941be628b0c509264a4a871984
Sha1
16cb8fb075d4f681c297748fe1d292de50c14037
Base64
6JOi

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u84E2';
console.log(char);  // Output: 蓢

Java:

char c = '\u84E2';
System.out.println(c);  // Output: 蓢

JSON:

{"text": "\u84E2"}  // Value: 蓢

Python:

char = '\u84E2'
print(char)  # Output: 蓢

Perl:

my $char = "\x{84E2}";
print $char;  # Output: 蓢

PHP:

$char = "\x{84E2}";
echo $char;  // Output: 蓢

Ruby:

char = "\u{84E2}"
puts char  # Output: 蓢

Rust:

let c = '\u{84E2}';
println!("{}", c);  // Output: 蓢

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0084E2";  /* Display: 蓢 */
}

HTML Decimal:

<p>HTML decimal: &#34018;</p>  <!-- Display: 蓢 -->

HTML Hexadecimal:

<p>HTML hex: &#x84E2;</p>  <!-- Display: 蓢 -->

URL Encoding:

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

Encodings

MD5:

bf0ee9941be628b0c509264a4a871984

SHA1:

16cb8fb075d4f681c297748fe1d292de50c14037

Base64:

6JOi