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