Unicode Finder

"蜡" U+8721(CJK UNIFIED IDEOGRAPH-8721)

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

Programming

C
\u8721
JavaScript
\u8721
Java
\u8721
Json
\u8721
Python
\u8721
Perl
\x{8721}
PHP
\x{8721}
Ruby
\u{8721}
Rust
\u{8721}
Go
\u8721

Web

CSS
\008721
HtmlDecimal
蜡
HtmlHexadecimal
蜡
Url
%E8%9C%A1

Code

MD5
11ba4c5dc6f20b0def06fc5621983bde
Sha1
a8231fc8aca7cb5919096989b4ee5da593183df8
Base64
6Jyh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8721';
console.log(char);  // Output: 蜡

Java:

char c = '\u8721';
System.out.println(c);  // Output: 蜡

JSON:

{"text": "\u8721"}  // Value: 蜡

Python:

char = '\u8721'
print(char)  # Output: 蜡

Perl:

my $char = "\x{8721}";
print $char;  # Output: 蜡

PHP:

$char = "\x{8721}";
echo $char;  // Output: 蜡

Ruby:

char = "\u{8721}"
puts char  # Output: 蜡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008721";  /* Display: 蜡 */
}

HTML Decimal:

<p>HTML decimal: &#34593;</p>  <!-- Display: 蜡 -->

HTML Hexadecimal:

<p>HTML hex: &#x8721;</p>  <!-- Display: 蜡 -->

URL Encoding:

// 蜡 URL encoding
https://unicodefinder.com/search.php?query=%E8%9C%A1

Encodings

MD5:

11ba4c5dc6f20b0def06fc5621983bde

SHA1:

a8231fc8aca7cb5919096989b4ee5da593183df8

Base64:

6Jyh