Unicode Finder

"蚔" U+8694(CJK UNIFIED IDEOGRAPH-8694)

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

Programming

C
\u8694
JavaScript
\u8694
Java
\u8694
Json
\u8694
Python
\u8694
Perl
\x{8694}
PHP
\x{8694}
Ruby
\u{8694}
Rust
\u{8694}
Go
\u8694

Web

CSS
\008694
HtmlDecimal
蚔
HtmlHexadecimal
蚔
Url
%E8%9A%94

Code

MD5
428e57937378aec25fa301e4f8f1acdd
Sha1
d9e64b2dce771cd304f64e09e9aa158fb982900c
Base64
6JqU

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8694';
console.log(char);  // Output: 蚔

Java:

char c = '\u8694';
System.out.println(c);  // Output: 蚔

JSON:

{"text": "\u8694"}  // Value: 蚔

Python:

char = '\u8694'
print(char)  # Output: 蚔

Perl:

my $char = "\x{8694}";
print $char;  # Output: 蚔

PHP:

$char = "\x{8694}";
echo $char;  // Output: 蚔

Ruby:

char = "\u{8694}"
puts char  # Output: 蚔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008694";  /* Display: 蚔 */
}

HTML Decimal:

<p>HTML decimal: &#34452;</p>  <!-- Display: 蚔 -->

HTML Hexadecimal:

<p>HTML hex: &#x8694;</p>  <!-- Display: 蚔 -->

URL Encoding:

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

Encodings

MD5:

428e57937378aec25fa301e4f8f1acdd

SHA1:

d9e64b2dce771cd304f64e09e9aa158fb982900c

Base64:

6JqU