C:
char c = '\u711D';
printf("%c\n", c); // Output: 焝
JavaScript:
const char = '\u711D';
console.log(char); // Output: 焝
Java:
char c = '\u711D';
System.out.println(c); // Output: 焝
JSON:
{"text": "\u711D"} // Value: 焝
Python:
char = '\u711D'
print(char) # Output: 焝
Perl:
my $char = "\x{711D}";
print $char; # Output: 焝
PHP:
$char = "\x{711D}";
echo $char; // Output: 焝
Ruby:
char = "\u{711D}"
puts char # Output: 焝
Rust:
let c = '\u{711D}';
println!("{}", c); // Output: 焝
Go:
char := '\u711D'
fmt.Printf("%c\n", char) // Output: 焝
CSS:
/* CSS content property */
.element::before {
content: "\00711D"; /* 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%9D
MD5:
1a57342732ce7146e07812932c20146d
SHA1:
473d49ac9d6f5a350a003a7cb90b7b3375e55ac5
Base64:
54Sd