Unicode Finder

"蓌" U+84CC(CJK UNIFIED IDEOGRAPH-84CC)

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

Programming

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

Web

CSS
\0084CC
HtmlDecimal
蓌
HtmlHexadecimal
蓌
Url
%E8%93%8C

Code

MD5
2b44956f44de1c7c7df4404116c424a7
Sha1
6d8dd265a8feea710f85895e035acad45b537853
Base64
6JOM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u84CC';
console.log(char);  // Output: 蓌

Java:

char c = '\u84CC';
System.out.println(c);  // Output: 蓌

JSON:

{"text": "\u84CC"}  // Value: 蓌

Python:

char = '\u84CC'
print(char)  # Output: 蓌

Perl:

my $char = "\x{84CC}";
print $char;  # Output: 蓌

PHP:

$char = "\x{84CC}";
echo $char;  // Output: 蓌

Ruby:

char = "\u{84CC}"
puts char  # Output: 蓌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33996;</p>  <!-- Display: 蓌 -->

HTML Hexadecimal:

<p>HTML hex: &#x84CC;</p>  <!-- Display: 蓌 -->

URL Encoding:

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

Encodings

MD5:

2b44956f44de1c7c7df4404116c424a7

SHA1:

6d8dd265a8feea710f85895e035acad45b537853

Base64:

6JOM