C:
char c = '\u7226';
printf("%c\n", c); // Output: 爦
JavaScript:
const char = '\u7226';
console.log(char); // Output: 爦
Java:
char c = '\u7226';
System.out.println(c); // Output: 爦
JSON:
{"text": "\u7226"} // Value: 爦
Python:
char = '\u7226'
print(char) # Output: 爦
Perl:
my $char = "\x{7226}";
print $char; # Output: 爦
PHP:
$char = "\x{7226}";
echo $char; // Output: 爦
Ruby:
char = "\u{7226}"
puts char # Output: 爦
Rust:
let c = '\u{7226}';
println!("{}", c); // Output: 爦
Go:
char := '\u7226'
fmt.Printf("%c\n", char) // Output: 爦
CSS:
/* CSS content property */
.element::before {
content: "\007226"; /* 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%A6
MD5:
cb526fec58e95cf1ed0786f2f8b02774
SHA1:
e7b9f0a5b576367735498eff363a4408b96d433b
Base64:
54im