Unicode Finder

"煸" U+7178(CJK UNIFIED IDEOGRAPH-7178)

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

Programming

C
\u7178
JavaScript
\u7178
Java
\u7178
Json
\u7178
Python
\u7178
Perl
\x{7178}
PHP
\x{7178}
Ruby
\u{7178}
Rust
\u{7178}
Go
\u7178

Web

CSS
\007178
HtmlDecimal
煸
HtmlHexadecimal
煸
Url
%E7%85%B8

Code

MD5
3521fbe0471b74d5c7c0ea4596b0cffd
Sha1
dd82308604cdf022a401c71ee7cb8759e1e6cbed
Base64
54W4

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7178';
console.log(char);  // Output: 煸

Java:

char c = '\u7178';
System.out.println(c);  // Output: 煸

JSON:

{"text": "\u7178"}  // Value: 煸

Python:

char = '\u7178'
print(char)  # Output: 煸

Perl:

my $char = "\x{7178}";
print $char;  # Output: 煸

PHP:

$char = "\x{7178}";
echo $char;  // Output: 煸

Ruby:

char = "\u{7178}"
puts char  # Output: 煸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007178";  /* Display: 煸 */
}

HTML Decimal:

<p>HTML decimal: &#29048;</p>  <!-- Display: 煸 -->

HTML Hexadecimal:

<p>HTML hex: &#x7178;</p>  <!-- Display: 煸 -->

URL Encoding:

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

Encodings

MD5:

3521fbe0471b74d5c7c0ea4596b0cffd

SHA1:

dd82308604cdf022a401c71ee7cb8759e1e6cbed

Base64:

54W4