C:
char c = '\u7111';
printf("%c\n", c); // Output: 焑
JavaScript:
const char = '\u7111';
console.log(char); // Output: 焑
Java:
char c = '\u7111';
System.out.println(c); // Output: 焑
JSON:
{"text": "\u7111"} // Value: 焑
Python:
char = '\u7111'
print(char) # Output: 焑
Perl:
my $char = "\x{7111}";
print $char; # Output: 焑
PHP:
$char = "\x{7111}";
echo $char; // Output: 焑
Ruby:
char = "\u{7111}"
puts char # Output: 焑
Rust:
let c = '\u{7111}';
println!("{}", c); // Output: 焑
Go:
char := '\u7111'
fmt.Printf("%c\n", char) // Output: 焑
CSS:
/* CSS content property */
.element::before {
content: "\007111"; /* 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%91
MD5:
4b3d43d3fda90f45332eb301b9476aa8
SHA1:
ce5dd96069e63d8fcba3b3d7d311309e57bd6d6c
Base64:
54SR