Unicode Finder

"衄" U+8844(CJK UNIFIED IDEOGRAPH-8844)

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

Programming

C
\u8844
JavaScript
\u8844
Java
\u8844
Json
\u8844
Python
\u8844
Perl
\x{8844}
PHP
\x{8844}
Ruby
\u{8844}
Rust
\u{8844}
Go
\u8844

Web

CSS
\008844
HtmlDecimal
衄
HtmlHexadecimal
衄
Url
%E8%A1%84

Code

MD5
94cdac245a34f1c9a1d394935f3aed44
Sha1
0dc6cdefb73d18fe96e6799709d470a4f2ff6b6a
Base64
6KGE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8844';
console.log(char);  // Output: 衄

Java:

char c = '\u8844';
System.out.println(c);  // Output: 衄

JSON:

{"text": "\u8844"}  // Value: 衄

Python:

char = '\u8844'
print(char)  # Output: 衄

Perl:

my $char = "\x{8844}";
print $char;  # Output: 衄

PHP:

$char = "\x{8844}";
echo $char;  // Output: 衄

Ruby:

char = "\u{8844}"
puts char  # Output: 衄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008844";  /* Display: 衄 */
}

HTML Decimal:

<p>HTML decimal: &#34884;</p>  <!-- Display: 衄 -->

HTML Hexadecimal:

<p>HTML hex: &#x8844;</p>  <!-- Display: 衄 -->

URL Encoding:

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

Encodings

MD5:

94cdac245a34f1c9a1d394935f3aed44

SHA1:

0dc6cdefb73d18fe96e6799709d470a4f2ff6b6a

Base64:

6KGE