Unicode Finder

"瞂" U+7782(CJK UNIFIED IDEOGRAPH-7782)

U+7782
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-7782

Programming

C
\u7782
JavaScript
\u7782
Java
\u7782
Json
\u7782
Python
\u7782
Perl
\x{7782}
PHP
\x{7782}
Ruby
\u{7782}
Rust
\u{7782}
Go
\u7782

Web

CSS
\007782
HtmlDecimal
瞂
HtmlHexadecimal
瞂
Url
%E7%9E%82

Code

MD5
c2c6e9672b30cd0ed0cb74509e047ff1
Sha1
8f25812fa5be8df0e9c9d01fa6f276ef6e87d57a
Base64
556C

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7782';
console.log(char);  // Output: 瞂

Java:

char c = '\u7782';
System.out.println(c);  // Output: 瞂

JSON:

{"text": "\u7782"}  // Value: 瞂

Python:

char = '\u7782'
print(char)  # Output: 瞂

Perl:

my $char = "\x{7782}";
print $char;  # Output: 瞂

PHP:

$char = "\x{7782}";
echo $char;  // Output: 瞂

Ruby:

char = "\u{7782}"
puts char  # Output: 瞂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007782";  /* Display: 瞂 */
}

HTML Decimal:

<p>HTML decimal: &#30594;</p>  <!-- Display: 瞂 -->

HTML Hexadecimal:

<p>HTML hex: &#x7782;</p>  <!-- Display: 瞂 -->

URL Encoding:

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

Encodings

MD5:

c2c6e9672b30cd0ed0cb74509e047ff1

SHA1:

8f25812fa5be8df0e9c9d01fa6f276ef6e87d57a

Base64:

556C