Unicode Finder

"玓" U+7393(CJK UNIFIED IDEOGRAPH-7393)

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

Programming

C
\u7393
JavaScript
\u7393
Java
\u7393
Json
\u7393
Python
\u7393
Perl
\x{7393}
PHP
\x{7393}
Ruby
\u{7393}
Rust
\u{7393}
Go
\u7393

Web

CSS
\007393
HtmlDecimal
玓
HtmlHexadecimal
玓
Url
%E7%8E%93

Code

MD5
0a94600ebb6d1cdb64082bec2a210f81
Sha1
0f9a3ae7704b988c371a636ae2abd4b53e0cc997
Base64
546T

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7393';
console.log(char);  // Output: 玓

Java:

char c = '\u7393';
System.out.println(c);  // Output: 玓

JSON:

{"text": "\u7393"}  // Value: 玓

Python:

char = '\u7393'
print(char)  # Output: 玓

Perl:

my $char = "\x{7393}";
print $char;  # Output: 玓

PHP:

$char = "\x{7393}";
echo $char;  // Output: 玓

Ruby:

char = "\u{7393}"
puts char  # Output: 玓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007393";  /* Display: 玓 */
}

HTML Decimal:

<p>HTML decimal: &#29587;</p>  <!-- Display: 玓 -->

HTML Hexadecimal:

<p>HTML hex: &#x7393;</p>  <!-- Display: 玓 -->

URL Encoding:

// 玓 URL encoding
https://unicodefinder.com/search.php?query=%E7%8E%93

Encodings

MD5:

0a94600ebb6d1cdb64082bec2a210f81

SHA1:

0f9a3ae7704b988c371a636ae2abd4b53e0cc997

Base64:

546T