Unicode Finder

"覇" U+8987(CJK UNIFIED IDEOGRAPH-8987)

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

Programming

C
\u8987
JavaScript
\u8987
Java
\u8987
Json
\u8987
Python
\u8987
Perl
\x{8987}
PHP
\x{8987}
Ruby
\u{8987}
Rust
\u{8987}
Go
\u8987

Web

CSS
\008987
HtmlDecimal
覇
HtmlHexadecimal
覇
Url
%E8%A6%87

Code

MD5
8e0dea2471521ffb27f2e61145b87b3d
Sha1
b6602d8ede1c92a6ad81968c75c49aa657b20be8
Base64
6KaH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8987';
console.log(char);  // Output: 覇

Java:

char c = '\u8987';
System.out.println(c);  // Output: 覇

JSON:

{"text": "\u8987"}  // Value: 覇

Python:

char = '\u8987'
print(char)  # Output: 覇

Perl:

my $char = "\x{8987}";
print $char;  # Output: 覇

PHP:

$char = "\x{8987}";
echo $char;  // Output: 覇

Ruby:

char = "\u{8987}"
puts char  # Output: 覇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008987";  /* Display: 覇 */
}

HTML Decimal:

<p>HTML decimal: &#35207;</p>  <!-- Display: 覇 -->

HTML Hexadecimal:

<p>HTML hex: &#x8987;</p>  <!-- Display: 覇 -->

URL Encoding:

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

Encodings

MD5:

8e0dea2471521ffb27f2e61145b87b3d

SHA1:

b6602d8ede1c92a6ad81968c75c49aa657b20be8

Base64:

6KaH