Unicode Finder

"琴" U+7434(CJK UNIFIED IDEOGRAPH-7434)

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

Programming

C
\u7434
JavaScript
\u7434
Java
\u7434
Json
\u7434
Python
\u7434
Perl
\x{7434}
PHP
\x{7434}
Ruby
\u{7434}
Rust
\u{7434}
Go
\u7434

Web

CSS
\007434
HtmlDecimal
琴
HtmlHexadecimal
琴
Url
%E7%90%B4

Code

MD5
bde383b7559dcd7a236d1e4d0fb926d6
Sha1
aef8cdec9f70ed0490de7c795362a8c56671b066
Base64
55C0

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7434';
console.log(char);  // Output: 琴

Java:

char c = '\u7434';
System.out.println(c);  // Output: 琴

JSON:

{"text": "\u7434"}  // Value: 琴

Python:

char = '\u7434'
print(char)  # Output: 琴

Perl:

my $char = "\x{7434}";
print $char;  # Output: 琴

PHP:

$char = "\x{7434}";
echo $char;  // Output: 琴

Ruby:

char = "\u{7434}"
puts char  # Output: 琴

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007434";  /* Display: 琴 */
}

HTML Decimal:

<p>HTML decimal: &#29748;</p>  <!-- Display: 琴 -->

HTML Hexadecimal:

<p>HTML hex: &#x7434;</p>  <!-- Display: 琴 -->

URL Encoding:

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

Encodings

MD5:

bde383b7559dcd7a236d1e4d0fb926d6

SHA1:

aef8cdec9f70ed0490de7c795362a8c56671b066

Base64:

55C0