Unicode Finder

"煘" U+7158(CJK UNIFIED IDEOGRAPH-7158)

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

Programming

C
\u7158
JavaScript
\u7158
Java
\u7158
Json
\u7158
Python
\u7158
Perl
\x{7158}
PHP
\x{7158}
Ruby
\u{7158}
Rust
\u{7158}
Go
\u7158

Web

CSS
\007158
HtmlDecimal
煘
HtmlHexadecimal
煘
Url
%E7%85%98

Code

MD5
90a9aa1604d16deec7ae8c45fbe7c78f
Sha1
e1ff87741e63bc282c854d62eb133a37417033c6
Base64
54WY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7158';
console.log(char);  // Output: 煘

Java:

char c = '\u7158';
System.out.println(c);  // Output: 煘

JSON:

{"text": "\u7158"}  // Value: 煘

Python:

char = '\u7158'
print(char)  # Output: 煘

Perl:

my $char = "\x{7158}";
print $char;  # Output: 煘

PHP:

$char = "\x{7158}";
echo $char;  // Output: 煘

Ruby:

char = "\u{7158}"
puts char  # Output: 煘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007158";  /* Display: 煘 */
}

HTML Decimal:

<p>HTML decimal: &#29016;</p>  <!-- Display: 煘 -->

HTML Hexadecimal:

<p>HTML hex: &#x7158;</p>  <!-- Display: 煘 -->

URL Encoding:

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

Encodings

MD5:

90a9aa1604d16deec7ae8c45fbe7c78f

SHA1:

e1ff87741e63bc282c854d62eb133a37417033c6

Base64:

54WY