Unicode Finder

"玙" U+7399(CJK UNIFIED IDEOGRAPH-7399)

U+7399
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7399

Programming

C
\u7399
JavaScript
\u7399
Java
\u7399
Json
\u7399
Python
\u7399
Perl
\x{7399}
PHP
\x{7399}
Ruby
\u{7399}
Rust
\u{7399}
Go
\u7399

Web

CSS
\007399
HtmlDecimal
玙
HtmlHexadecimal
玙
Url
%E7%8E%99

Code

MD5
619cbd2c083b17cf634181567e910108
Sha1
fe43ab92837c97ad3d4df87c73871b8d856fadf2
Base64
546Z

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7399';
console.log(char);  // Output: 玙

Java:

char c = '\u7399';
System.out.println(c);  // Output: 玙

JSON:

{"text": "\u7399"}  // Value: 玙

Python:

char = '\u7399'
print(char)  # Output: 玙

Perl:

my $char = "\x{7399}";
print $char;  # Output: 玙

PHP:

$char = "\x{7399}";
echo $char;  // Output: 玙

Ruby:

char = "\u{7399}"
puts char  # Output: 玙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007399";  /* Display: 玙 */
}

HTML Decimal:

<p>HTML decimal: &#29593;</p>  <!-- Display: 玙 -->

HTML Hexadecimal:

<p>HTML hex: &#x7399;</p>  <!-- Display: 玙 -->

URL Encoding:

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

Encodings

MD5:

619cbd2c083b17cf634181567e910108

SHA1:

fe43ab92837c97ad3d4df87c73871b8d856fadf2

Base64:

546Z