Unicode Finder

"袢" U+88A2(CJK UNIFIED IDEOGRAPH-88A2)

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

Programming

C
\u88A2
JavaScript
\u88A2
Java
\u88A2
Json
\u88A2
Python
\u88A2
Perl
\x{88A2}
PHP
\x{88A2}
Ruby
\u{88A2}
Rust
\u{88A2}
Go
\u88A2

Web

CSS
\0088A2
HtmlDecimal
袢
HtmlHexadecimal
袢
Url
%E8%A2%A2

Code

MD5
d79513adf5737855d47ce7560fb15833
Sha1
40aee6dc7fd6d0ac2942d3e39a21028731e90d88
Base64
6KKi

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u88A2';
console.log(char);  // Output: 袢

Java:

char c = '\u88A2';
System.out.println(c);  // Output: 袢

JSON:

{"text": "\u88A2"}  // Value: 袢

Python:

char = '\u88A2'
print(char)  # Output: 袢

Perl:

my $char = "\x{88A2}";
print $char;  # Output: 袢

PHP:

$char = "\x{88A2}";
echo $char;  // Output: 袢

Ruby:

char = "\u{88A2}"
puts char  # Output: 袢

Rust:

let c = '\u{88A2}';
println!("{}", c);  // Output: 袢

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0088A2";  /* Display: 袢 */
}

HTML Decimal:

<p>HTML decimal: &#34978;</p>  <!-- Display: 袢 -->

HTML Hexadecimal:

<p>HTML hex: &#x88A2;</p>  <!-- Display: 袢 -->

URL Encoding:

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

Encodings

MD5:

d79513adf5737855d47ce7560fb15833

SHA1:

40aee6dc7fd6d0ac2942d3e39a21028731e90d88

Base64:

6KKi