Unicode Finder

"玗" U+7397(CJK UNIFIED IDEOGRAPH-7397)

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

Programming

C
\u7397
JavaScript
\u7397
Java
\u7397
Json
\u7397
Python
\u7397
Perl
\x{7397}
PHP
\x{7397}
Ruby
\u{7397}
Rust
\u{7397}
Go
\u7397

Web

CSS
\007397
HtmlDecimal
玗
HtmlHexadecimal
玗
Url
%E7%8E%97

Code

MD5
528aa771901f1744363bd9580518b7d7
Sha1
530fac08c73cc05e9c30d4c23b6f30483c86ae83
Base64
546X

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7397';
console.log(char);  // Output: 玗

Java:

char c = '\u7397';
System.out.println(c);  // Output: 玗

JSON:

{"text": "\u7397"}  // Value: 玗

Python:

char = '\u7397'
print(char)  # Output: 玗

Perl:

my $char = "\x{7397}";
print $char;  # Output: 玗

PHP:

$char = "\x{7397}";
echo $char;  // Output: 玗

Ruby:

char = "\u{7397}"
puts char  # Output: 玗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007397";  /* Display: 玗 */
}

HTML Decimal:

<p>HTML decimal: &#29591;</p>  <!-- Display: 玗 -->

HTML Hexadecimal:

<p>HTML hex: &#x7397;</p>  <!-- Display: 玗 -->

URL Encoding:

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

Encodings

MD5:

528aa771901f1744363bd9580518b7d7

SHA1:

530fac08c73cc05e9c30d4c23b6f30483c86ae83

Base64:

546X