Unicode Finder

"煁" U+7141(CJK UNIFIED IDEOGRAPH-7141)

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

Programming

C
\u7141
JavaScript
\u7141
Java
\u7141
Json
\u7141
Python
\u7141
Perl
\x{7141}
PHP
\x{7141}
Ruby
\u{7141}
Rust
\u{7141}
Go
\u7141

Web

CSS
\007141
HtmlDecimal
煁
HtmlHexadecimal
煁
Url
%E7%85%81

Code

MD5
25bf405b7b0f2ca57efa5fba48e1430e
Sha1
7cbe8826ff8b56f345a14bc6da8aa4a0f3a34f93
Base64
54WB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7141';
console.log(char);  // Output: 煁

Java:

char c = '\u7141';
System.out.println(c);  // Output: 煁

JSON:

{"text": "\u7141"}  // Value: 煁

Python:

char = '\u7141'
print(char)  # Output: 煁

Perl:

my $char = "\x{7141}";
print $char;  # Output: 煁

PHP:

$char = "\x{7141}";
echo $char;  // Output: 煁

Ruby:

char = "\u{7141}"
puts char  # Output: 煁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007141";  /* Display: 煁 */
}

HTML Decimal:

<p>HTML decimal: &#28993;</p>  <!-- Display: 煁 -->

HTML Hexadecimal:

<p>HTML hex: &#x7141;</p>  <!-- Display: 煁 -->

URL Encoding:

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

Encodings

MD5:

25bf405b7b0f2ca57efa5fba48e1430e

SHA1:

7cbe8826ff8b56f345a14bc6da8aa4a0f3a34f93

Base64:

54WB