Unicode Finder

"蓋" U+84CB(CJK UNIFIED IDEOGRAPH-84CB)

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

Programming

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

Web

CSS
\0084CB
HtmlDecimal
蓋
HtmlHexadecimal
蓋
Url
%E8%93%8B

Code

MD5
de283f5517659a994f396997ebcaabc2
Sha1
0cbe8dc2364435abd9396101e6d7e96c39c20b88
Base64
6JOL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u84CB';
console.log(char);  // Output: 蓋

Java:

char c = '\u84CB';
System.out.println(c);  // Output: 蓋

JSON:

{"text": "\u84CB"}  // Value: 蓋

Python:

char = '\u84CB'
print(char)  # Output: 蓋

Perl:

my $char = "\x{84CB}";
print $char;  # Output: 蓋

PHP:

$char = "\x{84CB}";
echo $char;  // Output: 蓋

Ruby:

char = "\u{84CB}"
puts char  # Output: 蓋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33995;</p>  <!-- Display: 蓋 -->

HTML Hexadecimal:

<p>HTML hex: &#x84CB;</p>  <!-- Display: 蓋 -->

URL Encoding:

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

Encodings

MD5:

de283f5517659a994f396997ebcaabc2

SHA1:

0cbe8dc2364435abd9396101e6d7e96c39c20b88

Base64:

6JOL