Unicode Finder

"炛" U+709B(CJK UNIFIED IDEOGRAPH-709B)

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

Programming

C
\u709B
JavaScript
\u709B
Java
\u709B
Json
\u709B
Python
\u709B
Perl
\x{709B}
PHP
\x{709B}
Ruby
\u{709B}
Rust
\u{709B}
Go
\u709B

Web

CSS
\00709B
HtmlDecimal
炛
HtmlHexadecimal
炛
Url
%E7%82%9B

Code

MD5
f0088898be42340e3908150515a5fb0d
Sha1
175abe9ad7ce55e9295fb35f7c001f7697a104c3
Base64
54Kb

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u709B';
console.log(char);  // Output: 炛

Java:

char c = '\u709B';
System.out.println(c);  // Output: 炛

JSON:

{"text": "\u709B"}  // Value: 炛

Python:

char = '\u709B'
print(char)  # Output: 炛

Perl:

my $char = "\x{709B}";
print $char;  # Output: 炛

PHP:

$char = "\x{709B}";
echo $char;  // Output: 炛

Ruby:

char = "\u{709B}"
puts char  # Output: 炛

Rust:

let c = '\u{709B}';
println!("{}", c);  // Output: 炛

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00709B";  /* Display: 炛 */
}

HTML Decimal:

<p>HTML decimal: &#28827;</p>  <!-- Display: 炛 -->

HTML Hexadecimal:

<p>HTML hex: &#x709B;</p>  <!-- Display: 炛 -->

URL Encoding:

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

Encodings

MD5:

f0088898be42340e3908150515a5fb0d

SHA1:

175abe9ad7ce55e9295fb35f7c001f7697a104c3

Base64:

54Kb