Unicode Finder

"玁" U+7381(CJK UNIFIED IDEOGRAPH-7381)

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

Programming

C
\u7381
JavaScript
\u7381
Java
\u7381
Json
\u7381
Python
\u7381
Perl
\x{7381}
PHP
\x{7381}
Ruby
\u{7381}
Rust
\u{7381}
Go
\u7381

Web

CSS
\007381
HtmlDecimal
玁
HtmlHexadecimal
玁
Url
%E7%8E%81

Code

MD5
e9eb5ea00159e4a4b1cde88021d79a5f
Sha1
abb8dd0f0903f152865c87352d9d43e64453dcaa
Base64
546B

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7381';
console.log(char);  // Output: 玁

Java:

char c = '\u7381';
System.out.println(c);  // Output: 玁

JSON:

{"text": "\u7381"}  // Value: 玁

Python:

char = '\u7381'
print(char)  # Output: 玁

Perl:

my $char = "\x{7381}";
print $char;  # Output: 玁

PHP:

$char = "\x{7381}";
echo $char;  // Output: 玁

Ruby:

char = "\u{7381}"
puts char  # Output: 玁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007381";  /* Display: 玁 */
}

HTML Decimal:

<p>HTML decimal: &#29569;</p>  <!-- Display: 玁 -->

HTML Hexadecimal:

<p>HTML hex: &#x7381;</p>  <!-- Display: 玁 -->

URL Encoding:

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

Encodings

MD5:

e9eb5ea00159e4a4b1cde88021d79a5f

SHA1:

abb8dd0f0903f152865c87352d9d43e64453dcaa

Base64:

546B