Unicode Finder

"焏" U+710F(CJK UNIFIED IDEOGRAPH-710F)

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

Programming

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

Web

CSS
\00710F
HtmlDecimal
焏
HtmlHexadecimal
焏
Url
%E7%84%8F

Code

MD5
1c6b3d4320225e9fb2da44486a9b723f
Sha1
a599599e7f23318404d2c756d7ea05a6a61c67f8
Base64
54SP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u710F';
console.log(char);  // Output: 焏

Java:

char c = '\u710F';
System.out.println(c);  // Output: 焏

JSON:

{"text": "\u710F"}  // Value: 焏

Python:

char = '\u710F'
print(char)  # Output: 焏

Perl:

my $char = "\x{710F}";
print $char;  # Output: 焏

PHP:

$char = "\x{710F}";
echo $char;  // Output: 焏

Ruby:

char = "\u{710F}"
puts char  # Output: 焏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28943;</p>  <!-- Display: 焏 -->

HTML Hexadecimal:

<p>HTML hex: &#x710F;</p>  <!-- Display: 焏 -->

URL Encoding:

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

Encodings

MD5:

1c6b3d4320225e9fb2da44486a9b723f

SHA1:

a599599e7f23318404d2c756d7ea05a6a61c67f8

Base64:

54SP