Unicode Finder

"蚙" U+8699(CJK UNIFIED IDEOGRAPH-8699)

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

Programming

C
\u8699
JavaScript
\u8699
Java
\u8699
Json
\u8699
Python
\u8699
Perl
\x{8699}
PHP
\x{8699}
Ruby
\u{8699}
Rust
\u{8699}
Go
\u8699

Web

CSS
\008699
HtmlDecimal
蚙
HtmlHexadecimal
蚙
Url
%E8%9A%99

Code

MD5
ab9c5339ca0db75aea4d51126bcef6be
Sha1
fbbfeef4ca89c503d28b37d40e7b22de505a45bd
Base64
6JqZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8699';
console.log(char);  // Output: 蚙

Java:

char c = '\u8699';
System.out.println(c);  // Output: 蚙

JSON:

{"text": "\u8699"}  // Value: 蚙

Python:

char = '\u8699'
print(char)  # Output: 蚙

Perl:

my $char = "\x{8699}";
print $char;  # Output: 蚙

PHP:

$char = "\x{8699}";
echo $char;  // Output: 蚙

Ruby:

char = "\u{8699}"
puts char  # Output: 蚙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008699";  /* Display: 蚙 */
}

HTML Decimal:

<p>HTML decimal: &#34457;</p>  <!-- Display: 蚙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8699;</p>  <!-- Display: 蚙 -->

URL Encoding:

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

Encodings

MD5:

ab9c5339ca0db75aea4d51126bcef6be

SHA1:

fbbfeef4ca89c503d28b37d40e7b22de505a45bd

Base64:

6JqZ