Unicode Finder

"霆" U+9706(CJK UNIFIED IDEOGRAPH-9706)

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

Programming

C
\u9706
JavaScript
\u9706
Java
\u9706
Json
\u9706
Python
\u9706
Perl
\x{9706}
PHP
\x{9706}
Ruby
\u{9706}
Rust
\u{9706}
Go
\u9706

Web

CSS
\009706
HtmlDecimal
霆
HtmlHexadecimal
霆
Url
%E9%9C%86

Code

MD5
acfbbe211adfc97f3f9e27bf4a14f889
Sha1
7c7ed1cbef096a490a646861747ad39887367e1f
Base64
6ZyG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9706';
console.log(char);  // Output: 霆

Java:

char c = '\u9706';
System.out.println(c);  // Output: 霆

JSON:

{"text": "\u9706"}  // Value: 霆

Python:

char = '\u9706'
print(char)  # Output: 霆

Perl:

my $char = "\x{9706}";
print $char;  # Output: 霆

PHP:

$char = "\x{9706}";
echo $char;  // Output: 霆

Ruby:

char = "\u{9706}"
puts char  # Output: 霆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009706";  /* Display: 霆 */
}

HTML Decimal:

<p>HTML decimal: &#38662;</p>  <!-- Display: 霆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9706;</p>  <!-- Display: 霆 -->

URL Encoding:

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

Encodings

MD5:

acfbbe211adfc97f3f9e27bf4a14f889

SHA1:

7c7ed1cbef096a490a646861747ad39887367e1f

Base64:

6ZyG