Unicode Finder

"蠣" U+8823(CJK UNIFIED IDEOGRAPH-8823)

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

Programming

C
\u8823
JavaScript
\u8823
Java
\u8823
Json
\u8823
Python
\u8823
Perl
\x{8823}
PHP
\x{8823}
Ruby
\u{8823}
Rust
\u{8823}
Go
\u8823

Web

CSS
\008823
HtmlDecimal
蠣
HtmlHexadecimal
蠣
Url
%E8%A0%A3

Code

MD5
6d68c71f1c0ebff5ea0ff65c6fed9d8b
Sha1
e8390a030df316787711d0184ecd798830912720
Base64
6KCj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8823';
console.log(char);  // Output: 蠣

Java:

char c = '\u8823';
System.out.println(c);  // Output: 蠣

JSON:

{"text": "\u8823"}  // Value: 蠣

Python:

char = '\u8823'
print(char)  # Output: 蠣

Perl:

my $char = "\x{8823}";
print $char;  # Output: 蠣

PHP:

$char = "\x{8823}";
echo $char;  // Output: 蠣

Ruby:

char = "\u{8823}"
puts char  # Output: 蠣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008823";  /* Display: 蠣 */
}

HTML Decimal:

<p>HTML decimal: &#34851;</p>  <!-- Display: 蠣 -->

HTML Hexadecimal:

<p>HTML hex: &#x8823;</p>  <!-- Display: 蠣 -->

URL Encoding:

// 蠣 URL encoding
https://unicodefinder.com/search.php?query=%E8%A0%A3

Encodings

MD5:

6d68c71f1c0ebff5ea0ff65c6fed9d8b

SHA1:

e8390a030df316787711d0184ecd798830912720

Base64:

6KCj