Unicode Finder

"蜙" U+8719(CJK UNIFIED IDEOGRAPH-8719)

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

Programming

C
\u8719
JavaScript
\u8719
Java
\u8719
Json
\u8719
Python
\u8719
Perl
\x{8719}
PHP
\x{8719}
Ruby
\u{8719}
Rust
\u{8719}
Go
\u8719

Web

CSS
\008719
HtmlDecimal
蜙
HtmlHexadecimal
蜙
Url
%E8%9C%99

Code

MD5
fddd4a9f7416c12d8ff363cb06b0f00a
Sha1
5b4d25b67af3aa5494a016b7921c0fcc4cb97fc8
Base64
6JyZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8719';
console.log(char);  // Output: 蜙

Java:

char c = '\u8719';
System.out.println(c);  // Output: 蜙

JSON:

{"text": "\u8719"}  // Value: 蜙

Python:

char = '\u8719'
print(char)  # Output: 蜙

Perl:

my $char = "\x{8719}";
print $char;  # Output: 蜙

PHP:

$char = "\x{8719}";
echo $char;  // Output: 蜙

Ruby:

char = "\u{8719}"
puts char  # Output: 蜙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008719";  /* Display: 蜙 */
}

HTML Decimal:

<p>HTML decimal: &#34585;</p>  <!-- Display: 蜙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8719;</p>  <!-- Display: 蜙 -->

URL Encoding:

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

Encodings

MD5:

fddd4a9f7416c12d8ff363cb06b0f00a

SHA1:

5b4d25b67af3aa5494a016b7921c0fcc4cb97fc8

Base64:

6JyZ