C:
char c = '\u7229';
printf("%c\n", c); // Output: 爩
JavaScript:
const char = '\u7229';
console.log(char); // Output: 爩
Java:
char c = '\u7229';
System.out.println(c); // Output: 爩
JSON:
{"text": "\u7229"} // Value: 爩
Python:
char = '\u7229'
print(char) # Output: 爩
Perl:
my $char = "\x{7229}";
print $char; # Output: 爩
PHP:
$char = "\x{7229}";
echo $char; // Output: 爩
Ruby:
char = "\u{7229}"
puts char # Output: 爩
Rust:
let c = '\u{7229}';
println!("{}", c); // Output: 爩
Go:
char := '\u7229'
fmt.Printf("%c\n", char) // Output: 爩
CSS:
/* CSS content property */
.element::before {
content: "\007229"; /* 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%A9
MD5:
0304155c87589e3574f1f3b02b5cef8d
SHA1:
88f292134362534567ca261b2f3736dcf0efa4a7
Base64:
54ip