Unicode Finder

"衩" U+8869(CJK UNIFIED IDEOGRAPH-8869)

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

Programming

C
\u8869
JavaScript
\u8869
Java
\u8869
Json
\u8869
Python
\u8869
Perl
\x{8869}
PHP
\x{8869}
Ruby
\u{8869}
Rust
\u{8869}
Go
\u8869

Web

CSS
\008869
HtmlDecimal
衩
HtmlHexadecimal
衩
Url
%E8%A1%A9

Code

MD5
d7a19220d8b1efdf765a5e1f785c7449
Sha1
ed30eb5754a619e24cecd0b9b0eb018cb1620e67
Base64
6KGp

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8869';
console.log(char);  // Output: 衩

Java:

char c = '\u8869';
System.out.println(c);  // Output: 衩

JSON:

{"text": "\u8869"}  // Value: 衩

Python:

char = '\u8869'
print(char)  # Output: 衩

Perl:

my $char = "\x{8869}";
print $char;  # Output: 衩

PHP:

$char = "\x{8869}";
echo $char;  // Output: 衩

Ruby:

char = "\u{8869}"
puts char  # Output: 衩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008869";  /* Display: 衩 */
}

HTML Decimal:

<p>HTML decimal: &#34921;</p>  <!-- Display: 衩 -->

HTML Hexadecimal:

<p>HTML hex: &#x8869;</p>  <!-- Display: 衩 -->

URL Encoding:

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

Encodings

MD5:

d7a19220d8b1efdf765a5e1f785c7449

SHA1:

ed30eb5754a619e24cecd0b9b0eb018cb1620e67

Base64:

6KGp