C:
char c = '\u71E9';
printf("%c\n", c); // Output: 燩
JavaScript:
const char = '\u71E9';
console.log(char); // Output: 燩
Java:
char c = '\u71E9';
System.out.println(c); // Output: 燩
JSON:
{"text": "\u71E9"} // Value: 燩
Python:
char = '\u71E9'
print(char) # Output: 燩
Perl:
my $char = "\x{71E9}";
print $char; # Output: 燩
PHP:
$char = "\x{71E9}";
echo $char; // Output: 燩
Ruby:
char = "\u{71E9}"
puts char # Output: 燩
Rust:
let c = '\u{71E9}';
println!("{}", c); // Output: 燩
Go:
char := '\u71E9'
fmt.Printf("%c\n", char) // Output: 燩
CSS:
/* CSS content property */
.element::before {
content: "\0071E9"; /* 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%A9
MD5:
6d49f55d45b1dcf191ac75398de67fdc
SHA1:
377d2b59fac40529617ee980fe7b5134e7d2f4b1
Base64:
54ep