C:
char c = '\u7122';
printf("%c\n", c); // Output: 焢
JavaScript:
const char = '\u7122';
console.log(char); // Output: 焢
Java:
char c = '\u7122';
System.out.println(c); // Output: 焢
JSON:
{"text": "\u7122"} // Value: 焢
Python:
char = '\u7122'
print(char) # Output: 焢
Perl:
my $char = "\x{7122}";
print $char; # Output: 焢
PHP:
$char = "\x{7122}";
echo $char; // Output: 焢
Ruby:
char = "\u{7122}"
puts char # Output: 焢
Rust:
let c = '\u{7122}';
println!("{}", c); // Output: 焢
Go:
char := '\u7122'
fmt.Printf("%c\n", char) // Output: 焢
CSS:
/* CSS content property */
.element::before {
content: "\007122"; /* 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%A2
MD5:
281061ca76bdcd61fee63e99297b3974
SHA1:
f689f4758ed9830710ecb6ef1c45f9f4b408f644
Base64:
54Si