Unicode Finder

"焍" U+710D(CJK UNIFIED IDEOGRAPH-710D)

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

Programming

C
\u710D
JavaScript
\u710D
Java
\u710D
Json
\u710D
Python
\u710D
Perl
\x{710D}
PHP
\x{710D}
Ruby
\u{710D}
Rust
\u{710D}
Go
\u710D

Web

CSS
\00710D
HtmlDecimal
焍
HtmlHexadecimal
焍
Url
%E7%84%8D

Code

MD5
0055358d980b023b9f84e097a0955519
Sha1
57a754ffaf16678e245bb53d24bc6eefc93c6a3d
Base64
54SN

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u710D';
console.log(char);  // Output: 焍

Java:

char c = '\u710D';
System.out.println(c);  // Output: 焍

JSON:

{"text": "\u710D"}  // Value: 焍

Python:

char = '\u710D'
print(char)  # Output: 焍

Perl:

my $char = "\x{710D}";
print $char;  # Output: 焍

PHP:

$char = "\x{710D}";
echo $char;  // Output: 焍

Ruby:

char = "\u{710D}"
puts char  # Output: 焍

Rust:

let c = '\u{710D}';
println!("{}", c);  // Output: 焍

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00710D";  /* Display: 焍 */
}

HTML Decimal:

<p>HTML decimal: &#28941;</p>  <!-- Display: 焍 -->

HTML Hexadecimal:

<p>HTML hex: &#x710D;</p>  <!-- Display: 焍 -->

URL Encoding:

// 焍 URL encoding
https://unicodefinder.com/search.php?query=%E7%84%8D

Encodings

MD5:

0055358d980b023b9f84e097a0955519

SHA1:

57a754ffaf16678e245bb53d24bc6eefc93c6a3d

Base64:

54SN