Unicode Finder

"蜁" U+8701(CJK UNIFIED IDEOGRAPH-8701)

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

Programming

C
\u8701
JavaScript
\u8701
Java
\u8701
Json
\u8701
Python
\u8701
Perl
\x{8701}
PHP
\x{8701}
Ruby
\u{8701}
Rust
\u{8701}
Go
\u8701

Web

CSS
\008701
HtmlDecimal
蜁
HtmlHexadecimal
蜁
Url
%E8%9C%81

Code

MD5
c91c410763b1321f85b4e9510d0f68e1
Sha1
2a72fd33ad7a8e94d71069f940ad9be43ed6cb3f
Base64
6JyB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8701';
console.log(char);  // Output: 蜁

Java:

char c = '\u8701';
System.out.println(c);  // Output: 蜁

JSON:

{"text": "\u8701"}  // Value: 蜁

Python:

char = '\u8701'
print(char)  # Output: 蜁

Perl:

my $char = "\x{8701}";
print $char;  # Output: 蜁

PHP:

$char = "\x{8701}";
echo $char;  // Output: 蜁

Ruby:

char = "\u{8701}"
puts char  # Output: 蜁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008701";  /* Display: 蜁 */
}

HTML Decimal:

<p>HTML decimal: &#34561;</p>  <!-- Display: 蜁 -->

HTML Hexadecimal:

<p>HTML hex: &#x8701;</p>  <!-- Display: 蜁 -->

URL Encoding:

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

Encodings

MD5:

c91c410763b1321f85b4e9510d0f68e1

SHA1:

2a72fd33ad7a8e94d71069f940ad9be43ed6cb3f

Base64:

6JyB