Unicode Finder

"煀" U+7140(CJK UNIFIED IDEOGRAPH-7140)

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

Programming

C
\u7140
JavaScript
\u7140
Java
\u7140
Json
\u7140
Python
\u7140
Perl
\x{7140}
PHP
\x{7140}
Ruby
\u{7140}
Rust
\u{7140}
Go
\u7140

Web

CSS
\007140
HtmlDecimal
煀
HtmlHexadecimal
煀
Url
%E7%85%80

Code

MD5
d9d83741de5d6027bd278b51d9624910
Sha1
e8615579d6f7131db8bcd625d9ae3f7f6545dfdb
Base64
54WA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7140';
console.log(char);  // Output: 煀

Java:

char c = '\u7140';
System.out.println(c);  // Output: 煀

JSON:

{"text": "\u7140"}  // Value: 煀

Python:

char = '\u7140'
print(char)  # Output: 煀

Perl:

my $char = "\x{7140}";
print $char;  # Output: 煀

PHP:

$char = "\x{7140}";
echo $char;  // Output: 煀

Ruby:

char = "\u{7140}"
puts char  # Output: 煀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007140";  /* Display: 煀 */
}

HTML Decimal:

<p>HTML decimal: &#28992;</p>  <!-- Display: 煀 -->

HTML Hexadecimal:

<p>HTML hex: &#x7140;</p>  <!-- Display: 煀 -->

URL Encoding:

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

Encodings

MD5:

d9d83741de5d6027bd278b51d9624910

SHA1:

e8615579d6f7131db8bcd625d9ae3f7f6545dfdb

Base64:

54WA