C:
char c = '\u7288';
printf("%c\n", c); // Output: 犈
JavaScript:
const char = '\u7288';
console.log(char); // Output: 犈
Java:
char c = '\u7288';
System.out.println(c); // Output: 犈
JSON:
{"text": "\u7288"} // Value: 犈
Python:
char = '\u7288'
print(char) # Output: 犈
Perl:
my $char = "\x{7288}";
print $char; # Output: 犈
PHP:
$char = "\x{7288}";
echo $char; // Output: 犈
Ruby:
char = "\u{7288}"
puts char # Output: 犈
Rust:
let c = '\u{7288}';
println!("{}", c); // Output: 犈
Go:
char := '\u7288'
fmt.Printf("%c\n", char) // Output: 犈
CSS:
/* CSS content property */
.element::before {
content: "\007288"; /* 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%8A%88
MD5:
69cef98a0b53636192457e9194eb2d18
SHA1:
1f14130ba65c7b39db0a3d384d366bf060f848fb
Base64:
54qI