Unicode Finder

"襧" U+8967(CJK UNIFIED IDEOGRAPH-8967)

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

Programming

C
\u8967
JavaScript
\u8967
Java
\u8967
Json
\u8967
Python
\u8967
Perl
\x{8967}
PHP
\x{8967}
Ruby
\u{8967}
Rust
\u{8967}
Go
\u8967

Web

CSS
\008967
HtmlDecimal
襧
HtmlHexadecimal
襧
Url
%E8%A5%A7

Code

MD5
385fbae13cc837210aa081b62bbd2598
Sha1
0b39ce95aa1122bff1cadf7475b166a48afe34ca
Base64
6KWn

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8967';
console.log(char);  // Output: 襧

Java:

char c = '\u8967';
System.out.println(c);  // Output: 襧

JSON:

{"text": "\u8967"}  // Value: 襧

Python:

char = '\u8967'
print(char)  # Output: 襧

Perl:

my $char = "\x{8967}";
print $char;  # Output: 襧

PHP:

$char = "\x{8967}";
echo $char;  // Output: 襧

Ruby:

char = "\u{8967}"
puts char  # Output: 襧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008967";  /* Display: 襧 */
}

HTML Decimal:

<p>HTML decimal: &#35175;</p>  <!-- Display: 襧 -->

HTML Hexadecimal:

<p>HTML hex: &#x8967;</p>  <!-- Display: 襧 -->

URL Encoding:

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

Encodings

MD5:

385fbae13cc837210aa081b62bbd2598

SHA1:

0b39ce95aa1122bff1cadf7475b166a48afe34ca

Base64:

6KWn