Unicode Finder

"焩" U+7129(CJK UNIFIED IDEOGRAPH-7129)

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

Programming

C
\u7129
JavaScript
\u7129
Java
\u7129
Json
\u7129
Python
\u7129
Perl
\x{7129}
PHP
\x{7129}
Ruby
\u{7129}
Rust
\u{7129}
Go
\u7129

Web

CSS
\007129
HtmlDecimal
焩
HtmlHexadecimal
焩
Url
%E7%84%A9

Code

MD5
36cfa42d69f42c48631c2808cdd78e3e
Sha1
4e77993ebc139298e3037c3daf3cbe51baf15b02
Base64
54Sp

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7129';
console.log(char);  // Output: 焩

Java:

char c = '\u7129';
System.out.println(c);  // Output: 焩

JSON:

{"text": "\u7129"}  // Value: 焩

Python:

char = '\u7129'
print(char)  # Output: 焩

Perl:

my $char = "\x{7129}";
print $char;  # Output: 焩

PHP:

$char = "\x{7129}";
echo $char;  // Output: 焩

Ruby:

char = "\u{7129}"
puts char  # Output: 焩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007129";  /* Display: 焩 */
}

HTML Decimal:

<p>HTML decimal: &#28969;</p>  <!-- Display: 焩 -->

HTML Hexadecimal:

<p>HTML hex: &#x7129;</p>  <!-- Display: 焩 -->

URL Encoding:

// 焩 URL encoding
https://unicodefinder.com/search.php?query=%E7%84%A9

Encodings

MD5:

36cfa42d69f42c48631c2808cdd78e3e

SHA1:

4e77993ebc139298e3037c3daf3cbe51baf15b02

Base64:

54Sp