C:
char c = '\u710F';
printf("%c\n", c); // Output: 焏
JavaScript:
const char = '\u710F';
console.log(char); // Output: 焏
Java:
char c = '\u710F';
System.out.println(c); // Output: 焏
JSON:
{"text": "\u710F"} // Value: 焏
Python:
char = '\u710F'
print(char) # Output: 焏
Perl:
my $char = "\x{710F}";
print $char; # Output: 焏
PHP:
$char = "\x{710F}";
echo $char; // Output: 焏
Ruby:
char = "\u{710F}"
puts char # Output: 焏
Rust:
let c = '\u{710F}';
println!("{}", c); // Output: 焏
Go:
char := '\u710F'
fmt.Printf("%c\n", char) // Output: 焏
CSS:
/* CSS content property */
.element::before {
content: "\00710F"; /* 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%8F
MD5:
1c6b3d4320225e9fb2da44486a9b723f
SHA1:
a599599e7f23318404d2c756d7ea05a6a61c67f8
Base64:
54SP