C:
char c = '\u71F9';
printf("%c\n", c); // Output: 燹
JavaScript:
const char = '\u71F9';
console.log(char); // Output: 燹
Java:
char c = '\u71F9';
System.out.println(c); // Output: 燹
JSON:
{"text": "\u71F9"} // Value: 燹
Python:
char = '\u71F9'
print(char) # Output: 燹
Perl:
my $char = "\x{71F9}";
print $char; # Output: 燹
PHP:
$char = "\x{71F9}";
echo $char; // Output: 燹
Ruby:
char = "\u{71F9}"
puts char # Output: 燹
Rust:
let c = '\u{71F9}';
println!("{}", c); // Output: 燹
Go:
char := '\u71F9'
fmt.Printf("%c\n", char) // Output: 燹
CSS:
/* CSS content property */
.element::before {
content: "\0071F9"; /* 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%87%B9
MD5:
8c1e0dab8b84ea9bd011e8627cab9b89
SHA1:
f05d3fb20b8005ccec1fd8d75e74c9eb6bdc345e
Base64:
54e5