Unicode Finder

"蚈" U+8688(CJK UNIFIED IDEOGRAPH-8688)

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

Programming

C
\u8688
JavaScript
\u8688
Java
\u8688
Json
\u8688
Python
\u8688
Perl
\x{8688}
PHP
\x{8688}
Ruby
\u{8688}
Rust
\u{8688}
Go
\u8688

Web

CSS
\008688
HtmlDecimal
蚈
HtmlHexadecimal
蚈
Url
%E8%9A%88

Code

MD5
14e70673183d7b63f746b2f112a838eb
Sha1
2a0c7f5abf2a712b9f39fa41c9a41b83fd7461d7
Base64
6JqI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8688';
console.log(char);  // Output: 蚈

Java:

char c = '\u8688';
System.out.println(c);  // Output: 蚈

JSON:

{"text": "\u8688"}  // Value: 蚈

Python:

char = '\u8688'
print(char)  # Output: 蚈

Perl:

my $char = "\x{8688}";
print $char;  # Output: 蚈

PHP:

$char = "\x{8688}";
echo $char;  // Output: 蚈

Ruby:

char = "\u{8688}"
puts char  # Output: 蚈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008688";  /* Display: 蚈 */
}

HTML Decimal:

<p>HTML decimal: &#34440;</p>  <!-- Display: 蚈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8688;</p>  <!-- Display: 蚈 -->

URL Encoding:

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

Encodings

MD5:

14e70673183d7b63f746b2f112a838eb

SHA1:

2a0c7f5abf2a712b9f39fa41c9a41b83fd7461d7

Base64:

6JqI