C:
char c = '\u7105';
printf("%c\n", c); // Output: 焅
JavaScript:
const char = '\u7105';
console.log(char); // Output: 焅
Java:
char c = '\u7105';
System.out.println(c); // Output: 焅
JSON:
{"text": "\u7105"} // Value: 焅
Python:
char = '\u7105'
print(char) # Output: 焅
Perl:
my $char = "\x{7105}";
print $char; # Output: 焅
PHP:
$char = "\x{7105}";
echo $char; // Output: 焅
Ruby:
char = "\u{7105}"
puts char # Output: 焅
Rust:
let c = '\u{7105}';
println!("{}", c); // Output: 焅
Go:
char := '\u7105'
fmt.Printf("%c\n", char) // Output: 焅
CSS:
/* CSS content property */
.element::before {
content: "\007105"; /* 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%85
MD5:
36e68d9d79ac829e3b089eb53bd8395c
SHA1:
49e008802e6a25b5d6a741ba2c1b2183ac62e155
Base64:
54SF