Unicode Finder

"覂" U+8982(CJK UNIFIED IDEOGRAPH-8982)

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

Programming

C
\u8982
JavaScript
\u8982
Java
\u8982
Json
\u8982
Python
\u8982
Perl
\x{8982}
PHP
\x{8982}
Ruby
\u{8982}
Rust
\u{8982}
Go
\u8982

Web

CSS
\008982
HtmlDecimal
覂
HtmlHexadecimal
覂
Url
%E8%A6%82

Code

MD5
fbfde04ec66cff8e1bf6fdb4f74b88bd
Sha1
6ab3e27e06c79088f6f03cd7e2eb74066a95725d
Base64
6KaC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8982';
console.log(char);  // Output: 覂

Java:

char c = '\u8982';
System.out.println(c);  // Output: 覂

JSON:

{"text": "\u8982"}  // Value: 覂

Python:

char = '\u8982'
print(char)  # Output: 覂

Perl:

my $char = "\x{8982}";
print $char;  # Output: 覂

PHP:

$char = "\x{8982}";
echo $char;  // Output: 覂

Ruby:

char = "\u{8982}"
puts char  # Output: 覂

Rust:

let c = '\u{8982}';
println!("{}", c);  // Output: 覂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008982";  /* Display: 覂 */
}

HTML Decimal:

<p>HTML decimal: &#35202;</p>  <!-- Display: 覂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8982;</p>  <!-- Display: 覂 -->

URL Encoding:

// 覂 URL encoding
https://unicodefinder.com/search.php?query=%E8%A6%82

Encodings

MD5:

fbfde04ec66cff8e1bf6fdb4f74b88bd

SHA1:

6ab3e27e06c79088f6f03cd7e2eb74066a95725d

Base64:

6KaC