C:
char c = '\u7123';
printf("%c\n", c); // Output: 焣
JavaScript:
const char = '\u7123';
console.log(char); // Output: 焣
Java:
char c = '\u7123';
System.out.println(c); // Output: 焣
JSON:
{"text": "\u7123"} // Value: 焣
Python:
char = '\u7123'
print(char) # Output: 焣
Perl:
my $char = "\x{7123}";
print $char; # Output: 焣
PHP:
$char = "\x{7123}";
echo $char; // Output: 焣
Ruby:
char = "\u{7123}"
puts char # Output: 焣
Rust:
let c = '\u{7123}';
println!("{}", c); // Output: 焣
Go:
char := '\u7123'
fmt.Printf("%c\n", char) // Output: 焣
CSS:
/* CSS content property */
.element::before {
content: "\007123"; /* 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%A3
MD5:
0e5ca8abf0be79662d60d8a8d581d71d
SHA1:
d15dae1b0feefc1d7f2d2416a386564c0545391a
Base64:
54Sj