Unicode Finder

"煤" U+7164(CJK UNIFIED IDEOGRAPH-7164)

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

Programming

C
\u7164
JavaScript
\u7164
Java
\u7164
Json
\u7164
Python
\u7164
Perl
\x{7164}
PHP
\x{7164}
Ruby
\u{7164}
Rust
\u{7164}
Go
\u7164

Web

CSS
\007164
HtmlDecimal
煤
HtmlHexadecimal
煤
Url
%E7%85%A4

Code

MD5
9eaffed5efa1f007c68e7ef71591dccf
Sha1
1adc77d31df1c2fbcfce7d038ad2c14558617cac
Base64
54Wk

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7164';
console.log(char);  // Output: 煤

Java:

char c = '\u7164';
System.out.println(c);  // Output: 煤

JSON:

{"text": "\u7164"}  // Value: 煤

Python:

char = '\u7164'
print(char)  # Output: 煤

Perl:

my $char = "\x{7164}";
print $char;  # Output: 煤

PHP:

$char = "\x{7164}";
echo $char;  // Output: 煤

Ruby:

char = "\u{7164}"
puts char  # Output: 煤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007164";  /* Display: 煤 */
}

HTML Decimal:

<p>HTML decimal: &#29028;</p>  <!-- Display: 煤 -->

HTML Hexadecimal:

<p>HTML hex: &#x7164;</p>  <!-- Display: 煤 -->

URL Encoding:

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

Encodings

MD5:

9eaffed5efa1f007c68e7ef71591dccf

SHA1:

1adc77d31df1c2fbcfce7d038ad2c14558617cac

Base64:

54Wk