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