Unicode Finder

"煒" U+7152(CJK UNIFIED IDEOGRAPH-7152)

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

Programming

C
\u7152
JavaScript
\u7152
Java
\u7152
Json
\u7152
Python
\u7152
Perl
\x{7152}
PHP
\x{7152}
Ruby
\u{7152}
Rust
\u{7152}
Go
\u7152

Web

CSS
\007152
HtmlDecimal
煒
HtmlHexadecimal
煒
Url
%E7%85%92

Code

MD5
d3b73997f563a453275a2ab525320fa9
Sha1
9f5c92898951f389da5ac1a5f44edf0d1ffcbdd8
Base64
54WS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7152';
console.log(char);  // Output: 煒

Java:

char c = '\u7152';
System.out.println(c);  // Output: 煒

JSON:

{"text": "\u7152"}  // Value: 煒

Python:

char = '\u7152'
print(char)  # Output: 煒

Perl:

my $char = "\x{7152}";
print $char;  # Output: 煒

PHP:

$char = "\x{7152}";
echo $char;  // Output: 煒

Ruby:

char = "\u{7152}"
puts char  # Output: 煒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007152";  /* Display: 煒 */
}

HTML Decimal:

<p>HTML decimal: &#29010;</p>  <!-- Display: 煒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7152;</p>  <!-- Display: 煒 -->

URL Encoding:

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

Encodings

MD5:

d3b73997f563a453275a2ab525320fa9

SHA1:

9f5c92898951f389da5ac1a5f44edf0d1ffcbdd8

Base64:

54WS