C:
char c = '\u7218';
printf("%c\n", c); // Output: 爘
JavaScript:
const char = '\u7218';
console.log(char); // Output: 爘
Java:
char c = '\u7218';
System.out.println(c); // Output: 爘
JSON:
{"text": "\u7218"} // Value: 爘
Python:
char = '\u7218'
print(char) # Output: 爘
Perl:
my $char = "\x{7218}";
print $char; # Output: 爘
PHP:
$char = "\x{7218}";
echo $char; // Output: 爘
Ruby:
char = "\u{7218}"
puts char # Output: 爘
Rust:
let c = '\u{7218}';
println!("{}", c); // Output: 爘
Go:
char := '\u7218'
fmt.Printf("%c\n", char) // Output: 爘
CSS:
/* CSS content property */
.element::before {
content: "\007218"; /* 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%88%98
MD5:
ba42a2b689f0bfad85dae35891e9b331
SHA1:
478f5adb25cfb7fedb40c5d118f99b05fb404c5b
Base64:
54iY