Unicode Finder

"煇" U+7147(CJK UNIFIED IDEOGRAPH-7147)

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

Programming

C
\u7147
JavaScript
\u7147
Java
\u7147
Json
\u7147
Python
\u7147
Perl
\x{7147}
PHP
\x{7147}
Ruby
\u{7147}
Rust
\u{7147}
Go
\u7147

Web

CSS
\007147
HtmlDecimal
煇
HtmlHexadecimal
煇
Url
%E7%85%87

Code

MD5
41f49fccdbb1db3c3d413bc72e39f5bc
Sha1
a726ca23ce4f6e2b965b0c1607dc384c0a69e59d
Base64
54WH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7147';
console.log(char);  // Output: 煇

Java:

char c = '\u7147';
System.out.println(c);  // Output: 煇

JSON:

{"text": "\u7147"}  // Value: 煇

Python:

char = '\u7147'
print(char)  # Output: 煇

Perl:

my $char = "\x{7147}";
print $char;  # Output: 煇

PHP:

$char = "\x{7147}";
echo $char;  // Output: 煇

Ruby:

char = "\u{7147}"
puts char  # Output: 煇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007147";  /* Display: 煇 */
}

HTML Decimal:

<p>HTML decimal: &#28999;</p>  <!-- Display: 煇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7147;</p>  <!-- Display: 煇 -->

URL Encoding:

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

Encodings

MD5:

41f49fccdbb1db3c3d413bc72e39f5bc

SHA1:

a726ca23ce4f6e2b965b0c1607dc384c0a69e59d

Base64:

54WH