Unicode Finder

"炐" U+7090(CJK UNIFIED IDEOGRAPH-7090)

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

Programming

C
\u7090
JavaScript
\u7090
Java
\u7090
Json
\u7090
Python
\u7090
Perl
\x{7090}
PHP
\x{7090}
Ruby
\u{7090}
Rust
\u{7090}
Go
\u7090

Web

CSS
\007090
HtmlDecimal
炐
HtmlHexadecimal
炐
Url
%E7%82%90

Code

MD5
2baad06df461f573fc184900663c32d8
Sha1
7839e787ce00e0fea7e83d0e8767c00a8e88d71e
Base64
54KQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7090';
console.log(char);  // Output: 炐

Java:

char c = '\u7090';
System.out.println(c);  // Output: 炐

JSON:

{"text": "\u7090"}  // Value: 炐

Python:

char = '\u7090'
print(char)  # Output: 炐

Perl:

my $char = "\x{7090}";
print $char;  # Output: 炐

PHP:

$char = "\x{7090}";
echo $char;  // Output: 炐

Ruby:

char = "\u{7090}"
puts char  # Output: 炐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007090";  /* Display: 炐 */
}

HTML Decimal:

<p>HTML decimal: &#28816;</p>  <!-- Display: 炐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7090;</p>  <!-- Display: 炐 -->

URL Encoding:

// 炐 URL encoding
https://unicodefinder.com/search.php?query=%E7%82%90

Encodings

MD5:

2baad06df461f573fc184900663c32d8

SHA1:

7839e787ce00e0fea7e83d0e8767c00a8e88d71e

Base64:

54KQ