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: 炔
CSS:
/* CSS content property */
.element::before {
content: "\007094"; /* Display: 炔 */
}
HTML Decimal:
<p>HTML decimal: 炔</p> <!-- Display: 炔 -->
HTML Hexadecimal:
<p>HTML hex: 炔</p> <!-- Display: 炔 -->
URL Encoding:
// 炔 URL encoding
https://unicodefinder.com/search.php?query=%E7%82%94
MD5:
55fdf2dd95140ef6207e9e800614ced1
SHA1:
a986504507d1f168394b4367f876a424cc101ae1
Base64:
54KU