Unicode Finder

"襡" U+8961(CJK UNIFIED IDEOGRAPH-8961)

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

Programming

C
\u8961
JavaScript
\u8961
Java
\u8961
Json
\u8961
Python
\u8961
Perl
\x{8961}
PHP
\x{8961}
Ruby
\u{8961}
Rust
\u{8961}
Go
\u8961

Web

CSS
\008961
HtmlDecimal
襡
HtmlHexadecimal
襡
Url
%E8%A5%A1

Code

MD5
723e97915eb6d9b3ac35a150836e4bf9
Sha1
e7be75aeb41baa472816e5ea66d73cc6d7ab20cf
Base64
6KWh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8961';
console.log(char);  // Output: 襡

Java:

char c = '\u8961';
System.out.println(c);  // Output: 襡

JSON:

{"text": "\u8961"}  // Value: 襡

Python:

char = '\u8961'
print(char)  # Output: 襡

Perl:

my $char = "\x{8961}";
print $char;  # Output: 襡

PHP:

$char = "\x{8961}";
echo $char;  // Output: 襡

Ruby:

char = "\u{8961}"
puts char  # Output: 襡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008961";  /* Display: 襡 */
}

HTML Decimal:

<p>HTML decimal: &#35169;</p>  <!-- Display: 襡 -->

HTML Hexadecimal:

<p>HTML hex: &#x8961;</p>  <!-- Display: 襡 -->

URL Encoding:

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

Encodings

MD5:

723e97915eb6d9b3ac35a150836e4bf9

SHA1:

e7be75aeb41baa472816e5ea66d73cc6d7ab20cf

Base64:

6KWh