Unicode Finder

"炔" U+7094(CJK UNIFIED IDEOGRAPH-7094)

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

Programming

C
\u7094
JavaScript
\u7094
Java
\u7094
Json
\u7094
Python
\u7094
Perl
\x{7094}
PHP
\x{7094}
Ruby
\u{7094}
Rust
\u{7094}
Go
\u7094

Web

CSS
\007094
HtmlDecimal
炔
HtmlHexadecimal
炔
Url
%E7%82%94

Code

MD5
55fdf2dd95140ef6207e9e800614ced1
Sha1
a986504507d1f168394b4367f876a424cc101ae1
Base64
54KU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7094';
console.log(char);  // Output: 炔

Java:

char c = '\u7094';
System.out.println(c);  // Output: 炔

JSON:

{"text": "\u7094"}  // Value: 炔

Python:

char = '\u7094'
print(char)  # Output: 炔

Perl:

my $char = "\x{7094}";
print $char;  # Output: 炔

PHP:

$char = "\x{7094}";
echo $char;  // Output: 炔

Ruby:

char = "\u{7094}"
puts char  # Output: 炔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007094";  /* Display: 炔 */
}

HTML Decimal:

<p>HTML decimal: &#28820;</p>  <!-- Display: 炔 -->

HTML Hexadecimal:

<p>HTML hex: &#x7094;</p>  <!-- Display: 炔 -->

URL Encoding:

// 炔 URL encoding
https://unicodefinder.com/search.php?query=%E7%82%94

Encodings

MD5:

55fdf2dd95140ef6207e9e800614ced1

SHA1:

a986504507d1f168394b4367f876a424cc101ae1

Base64:

54KU