C:
char c = '\u7215';
printf("%c\n", c); // Output: 爕
JavaScript:
const char = '\u7215';
console.log(char); // Output: 爕
Java:
char c = '\u7215';
System.out.println(c); // Output: 爕
JSON:
{"text": "\u7215"} // Value: 爕
Python:
char = '\u7215'
print(char) # Output: 爕
Perl:
my $char = "\x{7215}";
print $char; # Output: 爕
PHP:
$char = "\x{7215}";
echo $char; // Output: 爕
Ruby:
char = "\u{7215}"
puts char # Output: 爕
Rust:
let c = '\u{7215}';
println!("{}", c); // Output: 爕
Go:
char := '\u7215'
fmt.Printf("%c\n", char) // Output: 爕
CSS:
/* CSS content property */
.element::before {
content: "\007215"; /* 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%95
MD5:
4ca219919773aabed2ed3b2676f345a2
SHA1:
77740e51f71cdd0019b0193e1b63a9571477b371
Base64:
54iV