Unicode Finder

"玏" U+738F(CJK UNIFIED IDEOGRAPH-738F)

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

Programming

C
\u738F
JavaScript
\u738F
Java
\u738F
Json
\u738F
Python
\u738F
Perl
\x{738F}
PHP
\x{738F}
Ruby
\u{738F}
Rust
\u{738F}
Go
\u738F

Web

CSS
\00738F
HtmlDecimal
玏
HtmlHexadecimal
玏
Url
%E7%8E%8F

Code

MD5
0eac11ae6e8ec6088b01ccdd9e47549a
Sha1
d7e1269b70f766d9d79f459e25928def17c50c39
Base64
546P

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u738F';
console.log(char);  // Output: 玏

Java:

char c = '\u738F';
System.out.println(c);  // Output: 玏

JSON:

{"text": "\u738F"}  // Value: 玏

Python:

char = '\u738F'
print(char)  # Output: 玏

Perl:

my $char = "\x{738F}";
print $char;  # Output: 玏

PHP:

$char = "\x{738F}";
echo $char;  // Output: 玏

Ruby:

char = "\u{738F}"
puts char  # Output: 玏

Rust:

let c = '\u{738F}';
println!("{}", c);  // Output: 玏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00738F";  /* Display: 玏 */
}

HTML Decimal:

<p>HTML decimal: &#29583;</p>  <!-- Display: 玏 -->

HTML Hexadecimal:

<p>HTML hex: &#x738F;</p>  <!-- Display: 玏 -->

URL Encoding:

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

Encodings

MD5:

0eac11ae6e8ec6088b01ccdd9e47549a

SHA1:

d7e1269b70f766d9d79f459e25928def17c50c39

Base64:

546P