Unicode Finder

"琁" U+7401(CJK UNIFIED IDEOGRAPH-7401)

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

Programming

C
\u7401
JavaScript
\u7401
Java
\u7401
Json
\u7401
Python
\u7401
Perl
\x{7401}
PHP
\x{7401}
Ruby
\u{7401}
Rust
\u{7401}
Go
\u7401

Web

CSS
\007401
HtmlDecimal
琁
HtmlHexadecimal
琁
Url
%E7%90%81

Code

MD5
1109224ee7b254c20338afa009c4cf63
Sha1
a4a25034cf18ed04e2c65b95f45bb90f99d1619d
Base64
55CB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7401';
console.log(char);  // Output: 琁

Java:

char c = '\u7401';
System.out.println(c);  // Output: 琁

JSON:

{"text": "\u7401"}  // Value: 琁

Python:

char = '\u7401'
print(char)  # Output: 琁

Perl:

my $char = "\x{7401}";
print $char;  # Output: 琁

PHP:

$char = "\x{7401}";
echo $char;  // Output: 琁

Ruby:

char = "\u{7401}"
puts char  # Output: 琁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007401";  /* Display: 琁 */
}

HTML Decimal:

<p>HTML decimal: &#29697;</p>  <!-- Display: 琁 -->

HTML Hexadecimal:

<p>HTML hex: &#x7401;</p>  <!-- Display: 琁 -->

URL Encoding:

// 琁 URL encoding
https://unicodefinder.com/search.php?query=%E7%90%81

Encodings

MD5:

1109224ee7b254c20338afa009c4cf63

SHA1:

a4a25034cf18ed04e2c65b95f45bb90f99d1619d

Base64:

55CB