Unicode Finder

"襦" U+8966(CJK UNIFIED IDEOGRAPH-8966)

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

Programming

C
\u8966
JavaScript
\u8966
Java
\u8966
Json
\u8966
Python
\u8966
Perl
\x{8966}
PHP
\x{8966}
Ruby
\u{8966}
Rust
\u{8966}
Go
\u8966

Web

CSS
\008966
HtmlDecimal
襦
HtmlHexadecimal
襦
Url
%E8%A5%A6

Code

MD5
7535cee5d16eaa2c76509b48ebe05988
Sha1
162279f274a631764036913d7077ab9025416768
Base64
6KWm

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8966';
console.log(char);  // Output: 襦

Java:

char c = '\u8966';
System.out.println(c);  // Output: 襦

JSON:

{"text": "\u8966"}  // Value: 襦

Python:

char = '\u8966'
print(char)  # Output: 襦

Perl:

my $char = "\x{8966}";
print $char;  # Output: 襦

PHP:

$char = "\x{8966}";
echo $char;  // Output: 襦

Ruby:

char = "\u{8966}"
puts char  # Output: 襦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008966";  /* Display: 襦 */
}

HTML Decimal:

<p>HTML decimal: &#35174;</p>  <!-- Display: 襦 -->

HTML Hexadecimal:

<p>HTML hex: &#x8966;</p>  <!-- Display: 襦 -->

URL Encoding:

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

Encodings

MD5:

7535cee5d16eaa2c76509b48ebe05988

SHA1:

162279f274a631764036913d7077ab9025416768

Base64:

6KWm