Unicode Finder

"袇" U+8887(CJK UNIFIED IDEOGRAPH-8887)

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

Programming

C
\u8887
JavaScript
\u8887
Java
\u8887
Json
\u8887
Python
\u8887
Perl
\x{8887}
PHP
\x{8887}
Ruby
\u{8887}
Rust
\u{8887}
Go
\u8887

Web

CSS
\008887
HtmlDecimal
袇
HtmlHexadecimal
袇
Url
%E8%A2%87

Code

MD5
1ddf31c137882ad42c7d3bca9b0306f7
Sha1
33f11ac927082599eb2826f45be24785d820e9c7
Base64
6KKH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8887';
console.log(char);  // Output: 袇

Java:

char c = '\u8887';
System.out.println(c);  // Output: 袇

JSON:

{"text": "\u8887"}  // Value: 袇

Python:

char = '\u8887'
print(char)  # Output: 袇

Perl:

my $char = "\x{8887}";
print $char;  # Output: 袇

PHP:

$char = "\x{8887}";
echo $char;  // Output: 袇

Ruby:

char = "\u{8887}"
puts char  # Output: 袇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008887";  /* Display: 袇 */
}

HTML Decimal:

<p>HTML decimal: &#34951;</p>  <!-- Display: 袇 -->

HTML Hexadecimal:

<p>HTML hex: &#x8887;</p>  <!-- Display: 袇 -->

URL Encoding:

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

Encodings

MD5:

1ddf31c137882ad42c7d3bca9b0306f7

SHA1:

33f11ac927082599eb2826f45be24785d820e9c7

Base64:

6KKH