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