Unicode Finder

"袂" U+8882(CJK UNIFIED IDEOGRAPH-8882)

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

Programming

C
\u8882
JavaScript
\u8882
Java
\u8882
Json
\u8882
Python
\u8882
Perl
\x{8882}
PHP
\x{8882}
Ruby
\u{8882}
Rust
\u{8882}
Go
\u8882

Web

CSS
\008882
HtmlDecimal
袂
HtmlHexadecimal
袂
Url
%E8%A2%82

Code

MD5
a44cf9668cedc51e8773717f8b154215
Sha1
ae0e6c8d67d29f10ce6e5e2dde0e93b92c75ae21
Base64
6KKC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8882';
console.log(char);  // Output: 袂

Java:

char c = '\u8882';
System.out.println(c);  // Output: 袂

JSON:

{"text": "\u8882"}  // Value: 袂

Python:

char = '\u8882'
print(char)  # Output: 袂

Perl:

my $char = "\x{8882}";
print $char;  # Output: 袂

PHP:

$char = "\x{8882}";
echo $char;  // Output: 袂

Ruby:

char = "\u{8882}"
puts char  # Output: 袂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008882";  /* Display: 袂 */
}

HTML Decimal:

<p>HTML decimal: &#34946;</p>  <!-- Display: 袂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8882;</p>  <!-- Display: 袂 -->

URL Encoding:

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

Encodings

MD5:

a44cf9668cedc51e8773717f8b154215

SHA1:

ae0e6c8d67d29f10ce6e5e2dde0e93b92c75ae21

Base64:

6KKC