C:
char c = '\u7193';
printf("%c\n", c); // Output: 熓
JavaScript:
const char = '\u7193';
console.log(char); // Output: 熓
Java:
char c = '\u7193';
System.out.println(c); // Output: 熓
JSON:
{"text": "\u7193"} // Value: 熓
Python:
char = '\u7193'
print(char) # Output: 熓
Perl:
my $char = "\x{7193}";
print $char; # Output: 熓
PHP:
$char = "\x{7193}";
echo $char; // Output: 熓
Ruby:
char = "\u{7193}"
puts char # Output: 熓
Rust:
let c = '\u{7193}';
println!("{}", c); // Output: 熓
Go:
char := '\u7193'
fmt.Printf("%c\n", char) // Output: 熓
CSS:
/* CSS content property */
.element::before {
content: "\007193"; /* 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%86%93
MD5:
973f9aa5e4754cd1764008ae99af6529
SHA1:
e1a14663b27d442d17bc32e99e85d13459ad0cdd
Base64:
54aT