Unicode Finder

"蓙" U+84D9(CJK UNIFIED IDEOGRAPH-84D9)

U+84D9
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-84D9

Programming

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

Web

CSS
\0084D9
HtmlDecimal
蓙
HtmlHexadecimal
蓙
Url
%E8%93%99

Code

MD5
cacc74a28ec07e5776baec9040536e22
Sha1
6ac96e46f563b3c39027702e34563f2b8ba0e8a7
Base64
6JOZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u84D9';
console.log(char);  // Output: 蓙

Java:

char c = '\u84D9';
System.out.println(c);  // Output: 蓙

JSON:

{"text": "\u84D9"}  // Value: 蓙

Python:

char = '\u84D9'
print(char)  # Output: 蓙

Perl:

my $char = "\x{84D9}";
print $char;  # Output: 蓙

PHP:

$char = "\x{84D9}";
echo $char;  // Output: 蓙

Ruby:

char = "\u{84D9}"
puts char  # Output: 蓙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34009;</p>  <!-- Display: 蓙 -->

HTML Hexadecimal:

<p>HTML hex: &#x84D9;</p>  <!-- Display: 蓙 -->

URL Encoding:

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

Encodings

MD5:

cacc74a28ec07e5776baec9040536e22

SHA1:

6ac96e46f563b3c39027702e34563f2b8ba0e8a7

Base64:

6JOZ