C:
char c = '\u7106';
printf("%c\n", c); // Output: 焆
JavaScript:
const char = '\u7106';
console.log(char); // Output: 焆
Java:
char c = '\u7106';
System.out.println(c); // Output: 焆
JSON:
{"text": "\u7106"} // Value: 焆
Python:
char = '\u7106'
print(char) # Output: 焆
Perl:
my $char = "\x{7106}";
print $char; # Output: 焆
PHP:
$char = "\x{7106}";
echo $char; // Output: 焆
Ruby:
char = "\u{7106}"
puts char # Output: 焆
Rust:
let c = '\u{7106}';
println!("{}", c); // Output: 焆
Go:
char := '\u7106'
fmt.Printf("%c\n", char) // Output: 焆
CSS:
/* CSS content property */
.element::before {
content: "\007106"; /* 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%84%86
MD5:
a63225125f03ac3995446c4c0a206197
SHA1:
cfc9ce579c0e673c32cfc0ab319b7ba5aa0c6cb1
Base64:
54SG