C:
char c = '\u71F6';
printf("%c\n", c); // Output: 燶
JavaScript:
const char = '\u71F6';
console.log(char); // Output: 燶
Java:
char c = '\u71F6';
System.out.println(c); // Output: 燶
JSON:
{"text": "\u71F6"} // Value: 燶
Python:
char = '\u71F6'
print(char) # Output: 燶
Perl:
my $char = "\x{71F6}";
print $char; # Output: 燶
PHP:
$char = "\x{71F6}";
echo $char; // Output: 燶
Ruby:
char = "\u{71F6}"
puts char # Output: 燶
Rust:
let c = '\u{71F6}';
println!("{}", c); // Output: 燶
Go:
char := '\u71F6'
fmt.Printf("%c\n", char) // Output: 燶
CSS:
/* CSS content property */
.element::before {
content: "\0071F6"; /* 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%B6
MD5:
23b75e6a2d38b5ebb29b2f40fccb993d
SHA1:
10d84d371c5ad93ce5833ac5d3afc642251bbfb2
Base64:
54e2