Unicode Finder

"琰" U+7430(CJK UNIFIED IDEOGRAPH-7430)

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

Programming

C
\u7430
JavaScript
\u7430
Java
\u7430
Json
\u7430
Python
\u7430
Perl
\x{7430}
PHP
\x{7430}
Ruby
\u{7430}
Rust
\u{7430}
Go
\u7430

Web

CSS
\007430
HtmlDecimal
琰
HtmlHexadecimal
琰
Url
%E7%90%B0

Code

MD5
d53d696c161baf2d5b2221b945e130e2
Sha1
d0da87443ee8da9d4b6775aab5b7347ba817d5b8
Base64
55Cw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7430';
console.log(char);  // Output: 琰

Java:

char c = '\u7430';
System.out.println(c);  // Output: 琰

JSON:

{"text": "\u7430"}  // Value: 琰

Python:

char = '\u7430'
print(char)  # Output: 琰

Perl:

my $char = "\x{7430}";
print $char;  # Output: 琰

PHP:

$char = "\x{7430}";
echo $char;  // Output: 琰

Ruby:

char = "\u{7430}"
puts char  # Output: 琰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007430";  /* Display: 琰 */
}

HTML Decimal:

<p>HTML decimal: &#29744;</p>  <!-- Display: 琰 -->

HTML Hexadecimal:

<p>HTML hex: &#x7430;</p>  <!-- Display: 琰 -->

URL Encoding:

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

Encodings

MD5:

d53d696c161baf2d5b2221b945e130e2

SHA1:

d0da87443ee8da9d4b6775aab5b7347ba817d5b8

Base64:

55Cw