Unicode Finder

"蜄" U+8704(CJK UNIFIED IDEOGRAPH-8704)

U+8704
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8704

Programming

C
\u8704
JavaScript
\u8704
Java
\u8704
Json
\u8704
Python
\u8704
Perl
\x{8704}
PHP
\x{8704}
Ruby
\u{8704}
Rust
\u{8704}
Go
\u8704

Web

CSS
\008704
HtmlDecimal
蜄
HtmlHexadecimal
蜄
Url
%E8%9C%84

Code

MD5
ba5bbee8c5ba054c5e6ce8452d457975
Sha1
51817ee61371815c23d1fe04a6e3172bd122cd5c
Base64
6JyE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8704';
console.log(char);  // Output: 蜄

Java:

char c = '\u8704';
System.out.println(c);  // Output: 蜄

JSON:

{"text": "\u8704"}  // Value: 蜄

Python:

char = '\u8704'
print(char)  # Output: 蜄

Perl:

my $char = "\x{8704}";
print $char;  # Output: 蜄

PHP:

$char = "\x{8704}";
echo $char;  // Output: 蜄

Ruby:

char = "\u{8704}"
puts char  # Output: 蜄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008704";  /* Display: 蜄 */
}

HTML Decimal:

<p>HTML decimal: &#34564;</p>  <!-- Display: 蜄 -->

HTML Hexadecimal:

<p>HTML hex: &#x8704;</p>  <!-- Display: 蜄 -->

URL Encoding:

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

Encodings

MD5:

ba5bbee8c5ba054c5e6ce8452d457975

SHA1:

51817ee61371815c23d1fe04a6e3172bd122cd5c

Base64:

6JyE