Unicode Finder

"蜈" U+8708(CJK UNIFIED IDEOGRAPH-8708)

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

Programming

C
\u8708
JavaScript
\u8708
Java
\u8708
Json
\u8708
Python
\u8708
Perl
\x{8708}
PHP
\x{8708}
Ruby
\u{8708}
Rust
\u{8708}
Go
\u8708

Web

CSS
\008708
HtmlDecimal
蜈
HtmlHexadecimal
蜈
Url
%E8%9C%88

Code

MD5
876e4989124953b4e7c88b2aa485a13f
Sha1
0d7187f09536cd223a652f5cd72199567de792b8
Base64
6JyI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8708';
console.log(char);  // Output: 蜈

Java:

char c = '\u8708';
System.out.println(c);  // Output: 蜈

JSON:

{"text": "\u8708"}  // Value: 蜈

Python:

char = '\u8708'
print(char)  # Output: 蜈

Perl:

my $char = "\x{8708}";
print $char;  # Output: 蜈

PHP:

$char = "\x{8708}";
echo $char;  // Output: 蜈

Ruby:

char = "\u{8708}"
puts char  # Output: 蜈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008708";  /* Display: 蜈 */
}

HTML Decimal:

<p>HTML decimal: &#34568;</p>  <!-- Display: 蜈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8708;</p>  <!-- Display: 蜈 -->

URL Encoding:

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

Encodings

MD5:

876e4989124953b4e7c88b2aa485a13f

SHA1:

0d7187f09536cd223a652f5cd72199567de792b8

Base64:

6JyI