Unicode Finder

"衤" U+8864(CJK UNIFIED IDEOGRAPH-8864)

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

Programming

C
\u8864
JavaScript
\u8864
Java
\u8864
Json
\u8864
Python
\u8864
Perl
\x{8864}
PHP
\x{8864}
Ruby
\u{8864}
Rust
\u{8864}
Go
\u8864

Web

CSS
\008864
HtmlDecimal
衤
HtmlHexadecimal
衤
Url
%E8%A1%A4

Code

MD5
972bd0322a161eed0f32b9b5c2f0d1c4
Sha1
3dc78ad4e973db9f3e7b0703726d9fbdd2a2bea0
Base64
6KGk

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8864';
console.log(char);  // Output: 衤

Java:

char c = '\u8864';
System.out.println(c);  // Output: 衤

JSON:

{"text": "\u8864"}  // Value: 衤

Python:

char = '\u8864'
print(char)  # Output: 衤

Perl:

my $char = "\x{8864}";
print $char;  # Output: 衤

PHP:

$char = "\x{8864}";
echo $char;  // Output: 衤

Ruby:

char = "\u{8864}"
puts char  # Output: 衤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008864";  /* Display: 衤 */
}

HTML Decimal:

<p>HTML decimal: &#34916;</p>  <!-- Display: 衤 -->

HTML Hexadecimal:

<p>HTML hex: &#x8864;</p>  <!-- Display: 衤 -->

URL Encoding:

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

Encodings

MD5:

972bd0322a161eed0f32b9b5c2f0d1c4

SHA1:

3dc78ad4e973db9f3e7b0703726d9fbdd2a2bea0

Base64:

6KGk