Unicode Finder

"袆" U+8886(CJK UNIFIED IDEOGRAPH-8886)

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

Programming

C
\u8886
JavaScript
\u8886
Java
\u8886
Json
\u8886
Python
\u8886
Perl
\x{8886}
PHP
\x{8886}
Ruby
\u{8886}
Rust
\u{8886}
Go
\u8886

Web

CSS
\008886
HtmlDecimal
袆
HtmlHexadecimal
袆
Url
%E8%A2%86

Code

MD5
a2bc0f5534935da333b1efd292d67825
Sha1
2c079dcb5bebefa455132b8c65025db412fa646d
Base64
6KKG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8886';
console.log(char);  // Output: 袆

Java:

char c = '\u8886';
System.out.println(c);  // Output: 袆

JSON:

{"text": "\u8886"}  // Value: 袆

Python:

char = '\u8886'
print(char)  # Output: 袆

Perl:

my $char = "\x{8886}";
print $char;  # Output: 袆

PHP:

$char = "\x{8886}";
echo $char;  // Output: 袆

Ruby:

char = "\u{8886}"
puts char  # Output: 袆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008886";  /* Display: 袆 */
}

HTML Decimal:

<p>HTML decimal: &#34950;</p>  <!-- Display: 袆 -->

HTML Hexadecimal:

<p>HTML hex: &#x8886;</p>  <!-- Display: 袆 -->

URL Encoding:

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

Encodings

MD5:

a2bc0f5534935da333b1efd292d67825

SHA1:

2c079dcb5bebefa455132b8c65025db412fa646d

Base64:

6KKG