Unicode Finder

"蒰" U+84B0(CJK UNIFIED IDEOGRAPH-84B0)

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

Programming

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

Web

CSS
\0084B0
HtmlDecimal
蒰
HtmlHexadecimal
蒰
Url
%E8%92%B0

Code

MD5
58c0d7fc8e2ba3d059a8d80f089ccc9d
Sha1
f0548520d332962db6ef1c03fdb92d223cdba4ed
Base64
6JKw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u84B0';
console.log(char);  // Output: 蒰

Java:

char c = '\u84B0';
System.out.println(c);  // Output: 蒰

JSON:

{"text": "\u84B0"}  // Value: 蒰

Python:

char = '\u84B0'
print(char)  # Output: 蒰

Perl:

my $char = "\x{84B0}";
print $char;  # Output: 蒰

PHP:

$char = "\x{84B0}";
echo $char;  // Output: 蒰

Ruby:

char = "\u{84B0}"
puts char  # Output: 蒰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33968;</p>  <!-- Display: 蒰 -->

HTML Hexadecimal:

<p>HTML hex: &#x84B0;</p>  <!-- Display: 蒰 -->

URL Encoding:

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

Encodings

MD5:

58c0d7fc8e2ba3d059a8d80f089ccc9d

SHA1:

f0548520d332962db6ef1c03fdb92d223cdba4ed

Base64:

6JKw