Unicode Finder

"炇" U+7087(CJK UNIFIED IDEOGRAPH-7087)

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

Programming

C
\u7087
JavaScript
\u7087
Java
\u7087
Json
\u7087
Python
\u7087
Perl
\x{7087}
PHP
\x{7087}
Ruby
\u{7087}
Rust
\u{7087}
Go
\u7087

Web

CSS
\007087
HtmlDecimal
炇
HtmlHexadecimal
炇
Url
%E7%82%87

Code

MD5
16d5398e174738ddad36d258d96b605d
Sha1
25c11c2c5386ec781fdf36e6e5920321902412cc
Base64
54KH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7087';
console.log(char);  // Output: 炇

Java:

char c = '\u7087';
System.out.println(c);  // Output: 炇

JSON:

{"text": "\u7087"}  // Value: 炇

Python:

char = '\u7087'
print(char)  # Output: 炇

Perl:

my $char = "\x{7087}";
print $char;  # Output: 炇

PHP:

$char = "\x{7087}";
echo $char;  // Output: 炇

Ruby:

char = "\u{7087}"
puts char  # Output: 炇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007087";  /* Display: 炇 */
}

HTML Decimal:

<p>HTML decimal: &#28807;</p>  <!-- Display: 炇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7087;</p>  <!-- Display: 炇 -->

URL Encoding:

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

Encodings

MD5:

16d5398e174738ddad36d258d96b605d

SHA1:

25c11c2c5386ec781fdf36e6e5920321902412cc

Base64:

54KH