Unicode Finder

"玂" U+7382(CJK UNIFIED IDEOGRAPH-7382)

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

Programming

C
\u7382
JavaScript
\u7382
Java
\u7382
Json
\u7382
Python
\u7382
Perl
\x{7382}
PHP
\x{7382}
Ruby
\u{7382}
Rust
\u{7382}
Go
\u7382

Web

CSS
\007382
HtmlDecimal
玂
HtmlHexadecimal
玂
Url
%E7%8E%82

Code

MD5
33dbdd47a5b53787ffc1baf0d2413ba5
Sha1
4765a52851b89123cbdbadd0af68e9cbc93cd24b
Base64
546C

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7382';
console.log(char);  // Output: 玂

Java:

char c = '\u7382';
System.out.println(c);  // Output: 玂

JSON:

{"text": "\u7382"}  // Value: 玂

Python:

char = '\u7382'
print(char)  # Output: 玂

Perl:

my $char = "\x{7382}";
print $char;  # Output: 玂

PHP:

$char = "\x{7382}";
echo $char;  // Output: 玂

Ruby:

char = "\u{7382}"
puts char  # Output: 玂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007382";  /* Display: 玂 */
}

HTML Decimal:

<p>HTML decimal: &#29570;</p>  <!-- Display: 玂 -->

HTML Hexadecimal:

<p>HTML hex: &#x7382;</p>  <!-- Display: 玂 -->

URL Encoding:

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

Encodings

MD5:

33dbdd47a5b53787ffc1baf0d2413ba5

SHA1:

4765a52851b89123cbdbadd0af68e9cbc93cd24b

Base64:

546C