Unicode Finder

"襖" U+8956(CJK UNIFIED IDEOGRAPH-8956)

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

Programming

C
\u8956
JavaScript
\u8956
Java
\u8956
Json
\u8956
Python
\u8956
Perl
\x{8956}
PHP
\x{8956}
Ruby
\u{8956}
Rust
\u{8956}
Go
\u8956

Web

CSS
\008956
HtmlDecimal
襖
HtmlHexadecimal
襖
Url
%E8%A5%96

Code

MD5
ed7debe44c904146d5a720a7e280dc3b
Sha1
6bda5667f4717389a7afc3d25c0a3adbd0792677
Base64
6KWW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8956';
console.log(char);  // Output: 襖

Java:

char c = '\u8956';
System.out.println(c);  // Output: 襖

JSON:

{"text": "\u8956"}  // Value: 襖

Python:

char = '\u8956'
print(char)  # Output: 襖

Perl:

my $char = "\x{8956}";
print $char;  # Output: 襖

PHP:

$char = "\x{8956}";
echo $char;  // Output: 襖

Ruby:

char = "\u{8956}"
puts char  # Output: 襖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008956";  /* Display: 襖 */
}

HTML Decimal:

<p>HTML decimal: &#35158;</p>  <!-- Display: 襖 -->

HTML Hexadecimal:

<p>HTML hex: &#x8956;</p>  <!-- Display: 襖 -->

URL Encoding:

// 襖 URL encoding
https://unicodefinder.com/search.php?query=%E8%A5%96

Encodings

MD5:

ed7debe44c904146d5a720a7e280dc3b

SHA1:

6bda5667f4717389a7afc3d25c0a3adbd0792677

Base64:

6KWW