C:
char c = '\u7294';
printf("%c\n", c); // Output: 犔
JavaScript:
const char = '\u7294';
console.log(char); // Output: 犔
Java:
char c = '\u7294';
System.out.println(c); // Output: 犔
JSON:
{"text": "\u7294"} // Value: 犔
Python:
char = '\u7294'
print(char) # Output: 犔
Perl:
my $char = "\x{7294}";
print $char; # Output: 犔
PHP:
$char = "\x{7294}";
echo $char; // Output: 犔
Ruby:
char = "\u{7294}"
puts char # Output: 犔
Rust:
let c = '\u{7294}';
println!("{}", c); // Output: 犔
Go:
char := '\u7294'
fmt.Printf("%c\n", char) // Output: 犔
CSS:
/* CSS content property */
.element::before {
content: "\007294"; /* 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%94
MD5:
6de89da40873a853dc1ab09621d45b80
SHA1:
580f2b9d3dea998e82b24ea79ad9a2a99034c2c9
Base64:
54qU