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