Unicode Finder

"焄" U+7104(CJK UNIFIED IDEOGRAPH-7104)

U+7104
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7104

Programming

C
\u7104
JavaScript
\u7104
Java
\u7104
Json
\u7104
Python
\u7104
Perl
\x{7104}
PHP
\x{7104}
Ruby
\u{7104}
Rust
\u{7104}
Go
\u7104

Web

CSS
\007104
HtmlDecimal
焄
HtmlHexadecimal
焄
Url
%E7%84%84

Code

MD5
1d61d5687f3af6f9872b6f34903bbe03
Sha1
49e7b6d41cf46cf931c4af925703595699056e29
Base64
54SE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7104';
console.log(char);  // Output: 焄

Java:

char c = '\u7104';
System.out.println(c);  // Output: 焄

JSON:

{"text": "\u7104"}  // Value: 焄

Python:

char = '\u7104'
print(char)  # Output: 焄

Perl:

my $char = "\x{7104}";
print $char;  # Output: 焄

PHP:

$char = "\x{7104}";
echo $char;  // Output: 焄

Ruby:

char = "\u{7104}"
puts char  # Output: 焄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007104";  /* Display: 焄 */
}

HTML Decimal:

<p>HTML decimal: &#28932;</p>  <!-- Display: 焄 -->

HTML Hexadecimal:

<p>HTML hex: &#x7104;</p>  <!-- Display: 焄 -->

URL Encoding:

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

Encodings

MD5:

1d61d5687f3af6f9872b6f34903bbe03

SHA1:

49e7b6d41cf46cf931c4af925703595699056e29

Base64:

54SE