Unicode Finder

"衠" U+8860(CJK UNIFIED IDEOGRAPH-8860)

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

Programming

C
\u8860
JavaScript
\u8860
Java
\u8860
Json
\u8860
Python
\u8860
Perl
\x{8860}
PHP
\x{8860}
Ruby
\u{8860}
Rust
\u{8860}
Go
\u8860

Web

CSS
\008860
HtmlDecimal
衠
HtmlHexadecimal
衠
Url
%E8%A1%A0

Code

MD5
4a9e514ebae7faf6fb4f46442fd1ab84
Sha1
da4ea28da89d0640d22a8210edeee98f95f8c311
Base64
6KGg

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8860';
console.log(char);  // Output: 衠

Java:

char c = '\u8860';
System.out.println(c);  // Output: 衠

JSON:

{"text": "\u8860"}  // Value: 衠

Python:

char = '\u8860'
print(char)  # Output: 衠

Perl:

my $char = "\x{8860}";
print $char;  # Output: 衠

PHP:

$char = "\x{8860}";
echo $char;  // Output: 衠

Ruby:

char = "\u{8860}"
puts char  # Output: 衠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008860";  /* Display: 衠 */
}

HTML Decimal:

<p>HTML decimal: &#34912;</p>  <!-- Display: 衠 -->

HTML Hexadecimal:

<p>HTML hex: &#x8860;</p>  <!-- Display: 衠 -->

URL Encoding:

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

Encodings

MD5:

4a9e514ebae7faf6fb4f46442fd1ab84

SHA1:

da4ea28da89d0640d22a8210edeee98f95f8c311

Base64:

6KGg