Unicode Finder

"蓲" U+84F2(CJK UNIFIED IDEOGRAPH-84F2)

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

Programming

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

Web

CSS
\0084F2
HtmlDecimal
蓲
HtmlHexadecimal
蓲
Url
%E8%93%B2

Code

MD5
7759f3998c28a5b074b6fd4ff09b9356
Sha1
9d10c1498dad2142624fce2abe6217a569460f14
Base64
6JOy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u84F2';
console.log(char);  // Output: 蓲

Java:

char c = '\u84F2';
System.out.println(c);  // Output: 蓲

JSON:

{"text": "\u84F2"}  // Value: 蓲

Python:

char = '\u84F2'
print(char)  # Output: 蓲

Perl:

my $char = "\x{84F2}";
print $char;  # Output: 蓲

PHP:

$char = "\x{84F2}";
echo $char;  // Output: 蓲

Ruby:

char = "\u{84F2}"
puts char  # Output: 蓲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34034;</p>  <!-- Display: 蓲 -->

HTML Hexadecimal:

<p>HTML hex: &#x84F2;</p>  <!-- Display: 蓲 -->

URL Encoding:

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

Encodings

MD5:

7759f3998c28a5b074b6fd4ff09b9356

SHA1:

9d10c1498dad2142624fce2abe6217a569460f14

Base64:

6JOy