Unicode Finder

"玈" U+7388(CJK UNIFIED IDEOGRAPH-7388)

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

Programming

C
\u7388
JavaScript
\u7388
Java
\u7388
Json
\u7388
Python
\u7388
Perl
\x{7388}
PHP
\x{7388}
Ruby
\u{7388}
Rust
\u{7388}
Go
\u7388

Web

CSS
\007388
HtmlDecimal
玈
HtmlHexadecimal
玈
Url
%E7%8E%88

Code

MD5
68d2a9987d95ef921e4d43bc61db0811
Sha1
f019f8cb9c4fdb5d4c4b04b5c5bed5a33e3a558c
Base64
546I

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7388';
console.log(char);  // Output: 玈

Java:

char c = '\u7388';
System.out.println(c);  // Output: 玈

JSON:

{"text": "\u7388"}  // Value: 玈

Python:

char = '\u7388'
print(char)  # Output: 玈

Perl:

my $char = "\x{7388}";
print $char;  # Output: 玈

PHP:

$char = "\x{7388}";
echo $char;  // Output: 玈

Ruby:

char = "\u{7388}"
puts char  # Output: 玈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007388";  /* Display: 玈 */
}

HTML Decimal:

<p>HTML decimal: &#29576;</p>  <!-- Display: 玈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7388;</p>  <!-- Display: 玈 -->

URL Encoding:

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

Encodings

MD5:

68d2a9987d95ef921e4d43bc61db0811

SHA1:

f019f8cb9c4fdb5d4c4b04b5c5bed5a33e3a558c

Base64:

546I