Unicode Finder

"炈" U+7088(CJK UNIFIED IDEOGRAPH-7088)

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

Programming

C
\u7088
JavaScript
\u7088
Java
\u7088
Json
\u7088
Python
\u7088
Perl
\x{7088}
PHP
\x{7088}
Ruby
\u{7088}
Rust
\u{7088}
Go
\u7088

Web

CSS
\007088
HtmlDecimal
炈
HtmlHexadecimal
炈
Url
%E7%82%88

Code

MD5
f00bcd2bcef5ce5a38259052172526d6
Sha1
67c52387041f83c3044299eed6694c9568294a6a
Base64
54KI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7088';
console.log(char);  // Output: 炈

Java:

char c = '\u7088';
System.out.println(c);  // Output: 炈

JSON:

{"text": "\u7088"}  // Value: 炈

Python:

char = '\u7088'
print(char)  # Output: 炈

Perl:

my $char = "\x{7088}";
print $char;  # Output: 炈

PHP:

$char = "\x{7088}";
echo $char;  // Output: 炈

Ruby:

char = "\u{7088}"
puts char  # Output: 炈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007088";  /* Display: 炈 */
}

HTML Decimal:

<p>HTML decimal: &#28808;</p>  <!-- Display: 炈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7088;</p>  <!-- Display: 炈 -->

URL Encoding:

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

Encodings

MD5:

f00bcd2bcef5ce5a38259052172526d6

SHA1:

67c52387041f83c3044299eed6694c9568294a6a

Base64:

54KI