Unicode Finder

"煓" U+7153(CJK UNIFIED IDEOGRAPH-7153)

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

Programming

C
\u7153
JavaScript
\u7153
Java
\u7153
Json
\u7153
Python
\u7153
Perl
\x{7153}
PHP
\x{7153}
Ruby
\u{7153}
Rust
\u{7153}
Go
\u7153

Web

CSS
\007153
HtmlDecimal
煓
HtmlHexadecimal
煓
Url
%E7%85%93

Code

MD5
34e6e84e28e42683d3af93117520b626
Sha1
f7c8fded3a57e00da24e30004ab094b4ac1efaa8
Base64
54WT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7153';
console.log(char);  // Output: 煓

Java:

char c = '\u7153';
System.out.println(c);  // Output: 煓

JSON:

{"text": "\u7153"}  // Value: 煓

Python:

char = '\u7153'
print(char)  # Output: 煓

Perl:

my $char = "\x{7153}";
print $char;  # Output: 煓

PHP:

$char = "\x{7153}";
echo $char;  // Output: 煓

Ruby:

char = "\u{7153}"
puts char  # Output: 煓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007153";  /* Display: 煓 */
}

HTML Decimal:

<p>HTML decimal: &#29011;</p>  <!-- Display: 煓 -->

HTML Hexadecimal:

<p>HTML hex: &#x7153;</p>  <!-- Display: 煓 -->

URL Encoding:

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

Encodings

MD5:

34e6e84e28e42683d3af93117520b626

SHA1:

f7c8fded3a57e00da24e30004ab094b4ac1efaa8

Base64:

54WT