C:
char c = '\u7117';
printf("%c\n", c); // Output: 焗
JavaScript:
const char = '\u7117';
console.log(char); // Output: 焗
Java:
char c = '\u7117';
System.out.println(c); // Output: 焗
JSON:
{"text": "\u7117"} // Value: 焗
Python:
char = '\u7117'
print(char) # Output: 焗
Perl:
my $char = "\x{7117}";
print $char; # Output: 焗
PHP:
$char = "\x{7117}";
echo $char; // Output: 焗
Ruby:
char = "\u{7117}"
puts char # Output: 焗
Rust:
let c = '\u{7117}';
println!("{}", c); // Output: 焗
Go:
char := '\u7117'
fmt.Printf("%c\n", char) // Output: 焗
CSS:
/* CSS content property */
.element::before {
content: "\007117"; /* 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%97
MD5:
8a214825840291f18b4322c87f728c36
SHA1:
7437b9311deba983e4278df1888221e766579a90
Base64:
54SX