Unicode Finder

"艀" U+8240(CJK UNIFIED IDEOGRAPH-8240)

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

Programming

C
\u8240
JavaScript
\u8240
Java
\u8240
Json
\u8240
Python
\u8240
Perl
\x{8240}
PHP
\x{8240}
Ruby
\u{8240}
Rust
\u{8240}
Go
\u8240

Web

CSS
\008240
HtmlDecimal
艀
HtmlHexadecimal
艀
Url
%E8%89%80

Code

MD5
670b68ed6a822462c86e32e17b21b1f9
Sha1
2ce029cc94f614906e04aa5f70ec3b9339838933
Base64
6ImA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8240';
console.log(char);  // Output: 艀

Java:

char c = '\u8240';
System.out.println(c);  // Output: 艀

JSON:

{"text": "\u8240"}  // Value: 艀

Python:

char = '\u8240'
print(char)  # Output: 艀

Perl:

my $char = "\x{8240}";
print $char;  # Output: 艀

PHP:

$char = "\x{8240}";
echo $char;  // Output: 艀

Ruby:

char = "\u{8240}"
puts char  # Output: 艀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008240";  /* Display: 艀 */
}

HTML Decimal:

<p>HTML decimal: &#33344;</p>  <!-- Display: 艀 -->

HTML Hexadecimal:

<p>HTML hex: &#x8240;</p>  <!-- Display: 艀 -->

URL Encoding:

// 艀 URL encoding
https://unicodefinder.com/search.php?query=%E8%89%80

Encodings

MD5:

670b68ed6a822462c86e32e17b21b1f9

SHA1:

2ce029cc94f614906e04aa5f70ec3b9339838933

Base64:

6ImA