Unicode Finder

"蓏" U+84CF(CJK UNIFIED IDEOGRAPH-84CF)

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

Programming

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

Web

CSS
\0084CF
HtmlDecimal
蓏
HtmlHexadecimal
蓏
Url
%E8%93%8F

Code

MD5
5ea93345022f7e0b01d11cdd75c7658f
Sha1
0a63bf33cb91350244c245af9e1c81c14a71a12f
Base64
6JOP

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u84CF';
console.log(char);  // Output: 蓏

Java:

char c = '\u84CF';
System.out.println(c);  // Output: 蓏

JSON:

{"text": "\u84CF"}  // Value: 蓏

Python:

char = '\u84CF'
print(char)  # Output: 蓏

Perl:

my $char = "\x{84CF}";
print $char;  # Output: 蓏

PHP:

$char = "\x{84CF}";
echo $char;  // Output: 蓏

Ruby:

char = "\u{84CF}"
puts char  # Output: 蓏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33999;</p>  <!-- Display: 蓏 -->

HTML Hexadecimal:

<p>HTML hex: &#x84CF;</p>  <!-- Display: 蓏 -->

URL Encoding:

// 蓏 URL encoding
https://unicodefinder.com/search.php?query=%E8%93%8F

Encodings

MD5:

5ea93345022f7e0b01d11cdd75c7658f

SHA1:

0a63bf33cb91350244c245af9e1c81c14a71a12f

Base64:

6JOP