Unicode Finder

"衘" U+8858(CJK UNIFIED IDEOGRAPH-8858)

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

Programming

C
\u8858
JavaScript
\u8858
Java
\u8858
Json
\u8858
Python
\u8858
Perl
\x{8858}
PHP
\x{8858}
Ruby
\u{8858}
Rust
\u{8858}
Go
\u8858

Web

CSS
\008858
HtmlDecimal
衘
HtmlHexadecimal
衘
Url
%E8%A1%98

Code

MD5
f959194b0b427861a3932a3e1e47efb5
Sha1
955bf175c3ec5193b0a8c5c6d4ea9a81cab4a5b8
Base64
6KGY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8858';
console.log(char);  // Output: 衘

Java:

char c = '\u8858';
System.out.println(c);  // Output: 衘

JSON:

{"text": "\u8858"}  // Value: 衘

Python:

char = '\u8858'
print(char)  # Output: 衘

Perl:

my $char = "\x{8858}";
print $char;  # Output: 衘

PHP:

$char = "\x{8858}";
echo $char;  // Output: 衘

Ruby:

char = "\u{8858}"
puts char  # Output: 衘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008858";  /* Display: 衘 */
}

HTML Decimal:

<p>HTML decimal: &#34904;</p>  <!-- Display: 衘 -->

HTML Hexadecimal:

<p>HTML hex: &#x8858;</p>  <!-- Display: 衘 -->

URL Encoding:

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

Encodings

MD5:

f959194b0b427861a3932a3e1e47efb5

SHA1:

955bf175c3ec5193b0a8c5c6d4ea9a81cab4a5b8

Base64:

6KGY