Unicode Finder

"蒫" U+84AB(CJK UNIFIED IDEOGRAPH-84AB)

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

Programming

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

Web

CSS
\0084AB
HtmlDecimal
蒫
HtmlHexadecimal
蒫
Url
%E8%92%AB

Code

MD5
f3ea0a1f01fb910617c6c86656e1bdc0
Sha1
c017e8469c33df1f0ffdcce527cf8211fc6a6449
Base64
6JKr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u84AB';
console.log(char);  // Output: 蒫

Java:

char c = '\u84AB';
System.out.println(c);  // Output: 蒫

JSON:

{"text": "\u84AB"}  // Value: 蒫

Python:

char = '\u84AB'
print(char)  # Output: 蒫

Perl:

my $char = "\x{84AB}";
print $char;  # Output: 蒫

PHP:

$char = "\x{84AB}";
echo $char;  // Output: 蒫

Ruby:

char = "\u{84AB}"
puts char  # Output: 蒫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33963;</p>  <!-- Display: 蒫 -->

HTML Hexadecimal:

<p>HTML hex: &#x84AB;</p>  <!-- Display: 蒫 -->

URL Encoding:

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

Encodings

MD5:

f3ea0a1f01fb910617c6c86656e1bdc0

SHA1:

c017e8469c33df1f0ffdcce527cf8211fc6a6449

Base64:

6JKr