Unicode Finder

"琀" U+7400(CJK UNIFIED IDEOGRAPH-7400)

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

Programming

C
\u7400
JavaScript
\u7400
Java
\u7400
Json
\u7400
Python
\u7400
Perl
\x{7400}
PHP
\x{7400}
Ruby
\u{7400}
Rust
\u{7400}
Go
\u7400

Web

CSS
\007400
HtmlDecimal
琀
HtmlHexadecimal
琀
Url
%E7%90%80

Code

MD5
671d265d0d4f167d26534d3fb695509a
Sha1
7a6d567ba0f0efe62786997c1ec0d2832af4234d
Base64
55CA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7400';
console.log(char);  // Output: 琀

Java:

char c = '\u7400';
System.out.println(c);  // Output: 琀

JSON:

{"text": "\u7400"}  // Value: 琀

Python:

char = '\u7400'
print(char)  # Output: 琀

Perl:

my $char = "\x{7400}";
print $char;  # Output: 琀

PHP:

$char = "\x{7400}";
echo $char;  // Output: 琀

Ruby:

char = "\u{7400}"
puts char  # Output: 琀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007400";  /* Display: 琀 */
}

HTML Decimal:

<p>HTML decimal: &#29696;</p>  <!-- Display: 琀 -->

HTML Hexadecimal:

<p>HTML hex: &#x7400;</p>  <!-- Display: 琀 -->

URL Encoding:

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

Encodings

MD5:

671d265d0d4f167d26534d3fb695509a

SHA1:

7a6d567ba0f0efe62786997c1ec0d2832af4234d

Base64:

55CA