Unicode Finder

"艁" U+8241(CJK UNIFIED IDEOGRAPH-8241)

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

Programming

C
\u8241
JavaScript
\u8241
Java
\u8241
Json
\u8241
Python
\u8241
Perl
\x{8241}
PHP
\x{8241}
Ruby
\u{8241}
Rust
\u{8241}
Go
\u8241

Web

CSS
\008241
HtmlDecimal
艁
HtmlHexadecimal
艁
Url
%E8%89%81

Code

MD5
275b98fc42a59bcf337cd59dcb1d3db8
Sha1
a879b40270ec4b14ffae3896de09884638f1f3c9
Base64
6ImB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8241';
console.log(char);  // Output: 艁

Java:

char c = '\u8241';
System.out.println(c);  // Output: 艁

JSON:

{"text": "\u8241"}  // Value: 艁

Python:

char = '\u8241'
print(char)  # Output: 艁

Perl:

my $char = "\x{8241}";
print $char;  # Output: 艁

PHP:

$char = "\x{8241}";
echo $char;  // Output: 艁

Ruby:

char = "\u{8241}"
puts char  # Output: 艁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008241";  /* Display: 艁 */
}

HTML Decimal:

<p>HTML decimal: &#33345;</p>  <!-- Display: 艁 -->

HTML Hexadecimal:

<p>HTML hex: &#x8241;</p>  <!-- Display: 艁 -->

URL Encoding:

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

Encodings

MD5:

275b98fc42a59bcf337cd59dcb1d3db8

SHA1:

a879b40270ec4b14ffae3896de09884638f1f3c9

Base64:

6ImB