Unicode Finder

"蓜" U+84DC(CJK UNIFIED IDEOGRAPH-84DC)

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

Programming

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

Web

CSS
\0084DC
HtmlDecimal
蓜
HtmlHexadecimal
蓜
Url
%E8%93%9C

Code

MD5
9c80f3fe974fa185eeee4a006fc711ca
Sha1
b6ab76b066e1543a370b5005cf38723c1f461add
Base64
6JOc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u84DC';
console.log(char);  // Output: 蓜

Java:

char c = '\u84DC';
System.out.println(c);  // Output: 蓜

JSON:

{"text": "\u84DC"}  // Value: 蓜

Python:

char = '\u84DC'
print(char)  # Output: 蓜

Perl:

my $char = "\x{84DC}";
print $char;  # Output: 蓜

PHP:

$char = "\x{84DC}";
echo $char;  // Output: 蓜

Ruby:

char = "\u{84DC}"
puts char  # Output: 蓜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34012;</p>  <!-- Display: 蓜 -->

HTML Hexadecimal:

<p>HTML hex: &#x84DC;</p>  <!-- Display: 蓜 -->

URL Encoding:

// 蓜 URL encoding
https://unicodefinder.com/search.php?query=%E8%93%9C

Encodings

MD5:

9c80f3fe974fa185eeee4a006fc711ca

SHA1:

b6ab76b066e1543a370b5005cf38723c1f461add

Base64:

6JOc