Unicode Finder

"衣" U+8863(CJK UNIFIED IDEOGRAPH-8863)

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

Programming

C
\u8863
JavaScript
\u8863
Java
\u8863
Json
\u8863
Python
\u8863
Perl
\x{8863}
PHP
\x{8863}
Ruby
\u{8863}
Rust
\u{8863}
Go
\u8863

Web

CSS
\008863
HtmlDecimal
衣
HtmlHexadecimal
衣
Url
%E8%A1%A3

Code

MD5
0cd16de4acda26e0aa9a22c6b039608d
Sha1
cb6d35842549dfaa32a186173866ab67e6df8add
Base64
6KGj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8863';
console.log(char);  // Output: 衣

Java:

char c = '\u8863';
System.out.println(c);  // Output: 衣

JSON:

{"text": "\u8863"}  // Value: 衣

Python:

char = '\u8863'
print(char)  # Output: 衣

Perl:

my $char = "\x{8863}";
print $char;  # Output: 衣

PHP:

$char = "\x{8863}";
echo $char;  // Output: 衣

Ruby:

char = "\u{8863}"
puts char  # Output: 衣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008863";  /* Display: 衣 */
}

HTML Decimal:

<p>HTML decimal: &#34915;</p>  <!-- Display: 衣 -->

HTML Hexadecimal:

<p>HTML hex: &#x8863;</p>  <!-- Display: 衣 -->

URL Encoding:

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

Encodings

MD5:

0cd16de4acda26e0aa9a22c6b039608d

SHA1:

cb6d35842549dfaa32a186173866ab67e6df8add

Base64:

6KGj