Unicode Finder

"煄" U+7144(CJK UNIFIED IDEOGRAPH-7144)

U+7144
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7144

Programming

C
\u7144
JavaScript
\u7144
Java
\u7144
Json
\u7144
Python
\u7144
Perl
\x{7144}
PHP
\x{7144}
Ruby
\u{7144}
Rust
\u{7144}
Go
\u7144

Web

CSS
\007144
HtmlDecimal
煄
HtmlHexadecimal
煄
Url
%E7%85%84

Code

MD5
179fcd0b88f2ef7d6db308052009ff67
Sha1
495a493b801067387cae55f2e4d12895921e0c77
Base64
54WE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7144';
console.log(char);  // Output: 煄

Java:

char c = '\u7144';
System.out.println(c);  // Output: 煄

JSON:

{"text": "\u7144"}  // Value: 煄

Python:

char = '\u7144'
print(char)  # Output: 煄

Perl:

my $char = "\x{7144}";
print $char;  # Output: 煄

PHP:

$char = "\x{7144}";
echo $char;  // Output: 煄

Ruby:

char = "\u{7144}"
puts char  # Output: 煄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007144";  /* Display: 煄 */
}

HTML Decimal:

<p>HTML decimal: &#28996;</p>  <!-- Display: 煄 -->

HTML Hexadecimal:

<p>HTML hex: &#x7144;</p>  <!-- Display: 煄 -->

URL Encoding:

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

Encodings

MD5:

179fcd0b88f2ef7d6db308052009ff67

SHA1:

495a493b801067387cae55f2e4d12895921e0c77

Base64:

54WE