Unicode Finder

"煏" U+714F(CJK UNIFIED IDEOGRAPH-714F)

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

Programming

C
\u714F
JavaScript
\u714F
Java
\u714F
Json
\u714F
Python
\u714F
Perl
\x{714F}
PHP
\x{714F}
Ruby
\u{714F}
Rust
\u{714F}
Go
\u714F

Web

CSS
\00714F
HtmlDecimal
煏
HtmlHexadecimal
煏
Url
%E7%85%8F

Code

MD5
1943c33dabbf9514da7667f75e79f77a
Sha1
8e5a09ef9e22823fed4428187945a26fe5f4b179
Base64
54WP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u714F';
console.log(char);  // Output: 煏

Java:

char c = '\u714F';
System.out.println(c);  // Output: 煏

JSON:

{"text": "\u714F"}  // Value: 煏

Python:

char = '\u714F'
print(char)  # Output: 煏

Perl:

my $char = "\x{714F}";
print $char;  # Output: 煏

PHP:

$char = "\x{714F}";
echo $char;  // Output: 煏

Ruby:

char = "\u{714F}"
puts char  # Output: 煏

Rust:

let c = '\u{714F}';
println!("{}", c);  // Output: 煏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00714F";  /* Display: 煏 */
}

HTML Decimal:

<p>HTML decimal: &#29007;</p>  <!-- Display: 煏 -->

HTML Hexadecimal:

<p>HTML hex: &#x714F;</p>  <!-- Display: 煏 -->

URL Encoding:

// 煏 URL encoding
https://unicodefinder.com/search.php?query=%E7%85%8F

Encodings

MD5:

1943c33dabbf9514da7667f75e79f77a

SHA1:

8e5a09ef9e22823fed4428187945a26fe5f4b179

Base64:

54WP