Unicode Finder

"霂" U+9702(CJK UNIFIED IDEOGRAPH-9702)

U+9702
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-9702

Programming

C
\u9702
JavaScript
\u9702
Java
\u9702
Json
\u9702
Python
\u9702
Perl
\x{9702}
PHP
\x{9702}
Ruby
\u{9702}
Rust
\u{9702}
Go
\u9702

Web

CSS
\009702
HtmlDecimal
霂
HtmlHexadecimal
霂
Url
%E9%9C%82

Code

MD5
1ee97c4badbb00036c81022b4052f079
Sha1
bd44b21d363ea473b1fdd62a23983ab1eddd20f5
Base64
6ZyC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9702';
console.log(char);  // Output: 霂

Java:

char c = '\u9702';
System.out.println(c);  // Output: 霂

JSON:

{"text": "\u9702"}  // Value: 霂

Python:

char = '\u9702'
print(char)  # Output: 霂

Perl:

my $char = "\x{9702}";
print $char;  # Output: 霂

PHP:

$char = "\x{9702}";
echo $char;  // Output: 霂

Ruby:

char = "\u{9702}"
puts char  # Output: 霂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009702";  /* Display: 霂 */
}

HTML Decimal:

<p>HTML decimal: &#38658;</p>  <!-- Display: 霂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9702;</p>  <!-- Display: 霂 -->

URL Encoding:

// 霂 URL encoding
https://unicodefinder.com/search.php?query=%E9%9C%82

Encodings

MD5:

1ee97c4badbb00036c81022b4052f079

SHA1:

bd44b21d363ea473b1fdd62a23983ab1eddd20f5

Base64:

6ZyC