C:
char c = '\u7228';
printf("%c\n", c); // Output: 爨
JavaScript:
const char = '\u7228';
console.log(char); // Output: 爨
Java:
char c = '\u7228';
System.out.println(c); // Output: 爨
JSON:
{"text": "\u7228"} // Value: 爨
Python:
char = '\u7228'
print(char) # Output: 爨
Perl:
my $char = "\x{7228}";
print $char; # Output: 爨
PHP:
$char = "\x{7228}";
echo $char; // Output: 爨
Ruby:
char = "\u{7228}"
puts char # Output: 爨
Rust:
let c = '\u{7228}';
println!("{}", c); // Output: 爨
Go:
char := '\u7228'
fmt.Printf("%c\n", char) // Output: 爨
CSS:
/* CSS content property */
.element::before {
content: "\007228"; /* 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%A8
MD5:
d62f84ad91d26e154988110223fcb19d
SHA1:
861c6ef207de4719c457890210fb7b510314348b
Base64:
54io