Unicode Finder

"煡" U+7161(CJK UNIFIED IDEOGRAPH-7161)

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

Programming

C
\u7161
JavaScript
\u7161
Java
\u7161
Json
\u7161
Python
\u7161
Perl
\x{7161}
PHP
\x{7161}
Ruby
\u{7161}
Rust
\u{7161}
Go
\u7161

Web

CSS
\007161
HtmlDecimal
煡
HtmlHexadecimal
煡
Url
%E7%85%A1

Code

MD5
64a3daed17deed5ef0329b5b5aa1294b
Sha1
fccd4cd18083556af93791fe1a7fe829275708d6
Base64
54Wh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7161';
console.log(char);  // Output: 煡

Java:

char c = '\u7161';
System.out.println(c);  // Output: 煡

JSON:

{"text": "\u7161"}  // Value: 煡

Python:

char = '\u7161'
print(char)  # Output: 煡

Perl:

my $char = "\x{7161}";
print $char;  # Output: 煡

PHP:

$char = "\x{7161}";
echo $char;  // Output: 煡

Ruby:

char = "\u{7161}"
puts char  # Output: 煡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007161";  /* Display: 煡 */
}

HTML Decimal:

<p>HTML decimal: &#29025;</p>  <!-- Display: 煡 -->

HTML Hexadecimal:

<p>HTML hex: &#x7161;</p>  <!-- Display: 煡 -->

URL Encoding:

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

Encodings

MD5:

64a3daed17deed5ef0329b5b5aa1294b

SHA1:

fccd4cd18083556af93791fe1a7fe829275708d6

Base64:

54Wh