Unicode Finder

"蚒" U+8692(CJK UNIFIED IDEOGRAPH-8692)

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

Programming

C
\u8692
JavaScript
\u8692
Java
\u8692
Json
\u8692
Python
\u8692
Perl
\x{8692}
PHP
\x{8692}
Ruby
\u{8692}
Rust
\u{8692}
Go
\u8692

Web

CSS
\008692
HtmlDecimal
蚒
HtmlHexadecimal
蚒
Url
%E8%9A%92

Code

MD5
33218c0d016fb1ae5c2a6ab014e50173
Sha1
80366865b7e7e16f8bd54875e4a83ca1cdb7e90c
Base64
6JqS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8692';
console.log(char);  // Output: 蚒

Java:

char c = '\u8692';
System.out.println(c);  // Output: 蚒

JSON:

{"text": "\u8692"}  // Value: 蚒

Python:

char = '\u8692'
print(char)  # Output: 蚒

Perl:

my $char = "\x{8692}";
print $char;  # Output: 蚒

PHP:

$char = "\x{8692}";
echo $char;  // Output: 蚒

Ruby:

char = "\u{8692}"
puts char  # Output: 蚒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008692";  /* Display: 蚒 */
}

HTML Decimal:

<p>HTML decimal: &#34450;</p>  <!-- Display: 蚒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8692;</p>  <!-- Display: 蚒 -->

URL Encoding:

// 蚒 URL encoding
https://unicodefinder.com/search.php?query=%E8%9A%92

Encodings

MD5:

33218c0d016fb1ae5c2a6ab014e50173

SHA1:

80366865b7e7e16f8bd54875e4a83ca1cdb7e90c

Base64:

6JqS