Unicode Finder

"玞" U+739E(CJK UNIFIED IDEOGRAPH-739E)

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

Programming

C
\u739E
JavaScript
\u739E
Java
\u739E
Json
\u739E
Python
\u739E
Perl
\x{739E}
PHP
\x{739E}
Ruby
\u{739E}
Rust
\u{739E}
Go
\u739E

Web

CSS
\00739E
HtmlDecimal
玞
HtmlHexadecimal
玞
Url
%E7%8E%9E

Code

MD5
7ec6bd16a42e8c92228be83ed9eba50d
Sha1
6ee6acc767082bdf7058136fb8ce4c165cd2ea9c
Base64
546e

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u739E';
console.log(char);  // Output: 玞

Java:

char c = '\u739E';
System.out.println(c);  // Output: 玞

JSON:

{"text": "\u739E"}  // Value: 玞

Python:

char = '\u739E'
print(char)  # Output: 玞

Perl:

my $char = "\x{739E}";
print $char;  # Output: 玞

PHP:

$char = "\x{739E}";
echo $char;  // Output: 玞

Ruby:

char = "\u{739E}"
puts char  # Output: 玞

Rust:

let c = '\u{739E}';
println!("{}", c);  // Output: 玞

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00739E";  /* Display: 玞 */
}

HTML Decimal:

<p>HTML decimal: &#29598;</p>  <!-- Display: 玞 -->

HTML Hexadecimal:

<p>HTML hex: &#x739E;</p>  <!-- Display: 玞 -->

URL Encoding:

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

Encodings

MD5:

7ec6bd16a42e8c92228be83ed9eba50d

SHA1:

6ee6acc767082bdf7058136fb8ce4c165cd2ea9c

Base64:

546e