Unicode Finder

"炂" U+7082(CJK UNIFIED IDEOGRAPH-7082)

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

Programming

C
\u7082
JavaScript
\u7082
Java
\u7082
Json
\u7082
Python
\u7082
Perl
\x{7082}
PHP
\x{7082}
Ruby
\u{7082}
Rust
\u{7082}
Go
\u7082

Web

CSS
\007082
HtmlDecimal
炂
HtmlHexadecimal
炂
Url
%E7%82%82

Code

MD5
263390fe273135108667de1722129c2e
Sha1
99efeb5b9191303f2249c367accdb7e9da7aa0ad
Base64
54KC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7082';
console.log(char);  // Output: 炂

Java:

char c = '\u7082';
System.out.println(c);  // Output: 炂

JSON:

{"text": "\u7082"}  // Value: 炂

Python:

char = '\u7082'
print(char)  # Output: 炂

Perl:

my $char = "\x{7082}";
print $char;  # Output: 炂

PHP:

$char = "\x{7082}";
echo $char;  // Output: 炂

Ruby:

char = "\u{7082}"
puts char  # Output: 炂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007082";  /* Display: 炂 */
}

HTML Decimal:

<p>HTML decimal: &#28802;</p>  <!-- Display: 炂 -->

HTML Hexadecimal:

<p>HTML hex: &#x7082;</p>  <!-- Display: 炂 -->

URL Encoding:

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

Encodings

MD5:

263390fe273135108667de1722129c2e

SHA1:

99efeb5b9191303f2249c367accdb7e9da7aa0ad

Base64:

54KC