Unicode Finder

"琸" U+7438(CJK UNIFIED IDEOGRAPH-7438)

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

Programming

C
\u7438
JavaScript
\u7438
Java
\u7438
Json
\u7438
Python
\u7438
Perl
\x{7438}
PHP
\x{7438}
Ruby
\u{7438}
Rust
\u{7438}
Go
\u7438

Web

CSS
\007438
HtmlDecimal
琸
HtmlHexadecimal
琸
Url
%E7%90%B8

Code

MD5
8d5d54600c2f82c7a48d3e70247e0a13
Sha1
fad0475c83cb5136859c82dbc5a5b29b0dbb0e63
Base64
55C4

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7438';
console.log(char);  // Output: 琸

Java:

char c = '\u7438';
System.out.println(c);  // Output: 琸

JSON:

{"text": "\u7438"}  // Value: 琸

Python:

char = '\u7438'
print(char)  # Output: 琸

Perl:

my $char = "\x{7438}";
print $char;  # Output: 琸

PHP:

$char = "\x{7438}";
echo $char;  // Output: 琸

Ruby:

char = "\u{7438}"
puts char  # Output: 琸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007438";  /* Display: 琸 */
}

HTML Decimal:

<p>HTML decimal: &#29752;</p>  <!-- Display: 琸 -->

HTML Hexadecimal:

<p>HTML hex: &#x7438;</p>  <!-- Display: 琸 -->

URL Encoding:

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

Encodings

MD5:

8d5d54600c2f82c7a48d3e70247e0a13

SHA1:

fad0475c83cb5136859c82dbc5a5b29b0dbb0e63

Base64:

55C4