C:
char c = '\u7296';
printf("%c\n", c); // Output: 犖
JavaScript:
const char = '\u7296';
console.log(char); // Output: 犖
Java:
char c = '\u7296';
System.out.println(c); // Output: 犖
JSON:
{"text": "\u7296"} // Value: 犖
Python:
char = '\u7296'
print(char) # Output: 犖
Perl:
my $char = "\x{7296}";
print $char; # Output: 犖
PHP:
$char = "\x{7296}";
echo $char; // Output: 犖
Ruby:
char = "\u{7296}"
puts char # Output: 犖
Rust:
let c = '\u{7296}';
println!("{}", c); // Output: 犖
Go:
char := '\u7296'
fmt.Printf("%c\n", char) // Output: 犖
CSS:
/* CSS content property */
.element::before {
content: "\007296"; /* 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%96
MD5:
8e8554a33169711e0e992264d7f4801a
SHA1:
3b22a2d288c1a760f506dd03107caee5c9c7aa73
Base64:
54qW