C:
char c = '\u7102';
printf("%c\n", c); // Output: 焂
JavaScript:
const char = '\u7102';
console.log(char); // Output: 焂
Java:
char c = '\u7102';
System.out.println(c); // Output: 焂
JSON:
{"text": "\u7102"} // Value: 焂
Python:
char = '\u7102'
print(char) # Output: 焂
Perl:
my $char = "\x{7102}";
print $char; # Output: 焂
PHP:
$char = "\x{7102}";
echo $char; // Output: 焂
Ruby:
char = "\u{7102}"
puts char # Output: 焂
Rust:
let c = '\u{7102}';
println!("{}", c); // Output: 焂
Go:
char := '\u7102'
fmt.Printf("%c\n", char) // Output: 焂
CSS:
/* CSS content property */
.element::before {
content: "\007102"; /* 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%82
MD5:
bb6e85980f884d3d91849297768415d4
SHA1:
dc7c7541f46300b2a4ff0f2fb9466dc490bf6f02
Base64:
54SC