C:
char c = '\u7291';
printf("%c\n", c); // Output: 犑
JavaScript:
const char = '\u7291';
console.log(char); // Output: 犑
Java:
char c = '\u7291';
System.out.println(c); // Output: 犑
JSON:
{"text": "\u7291"} // Value: 犑
Python:
char = '\u7291'
print(char) # Output: 犑
Perl:
my $char = "\x{7291}";
print $char; # Output: 犑
PHP:
$char = "\x{7291}";
echo $char; // Output: 犑
Ruby:
char = "\u{7291}"
puts char # Output: 犑
Rust:
let c = '\u{7291}';
println!("{}", c); // Output: 犑
Go:
char := '\u7291'
fmt.Printf("%c\n", char) // Output: 犑
CSS:
/* CSS content property */
.element::before {
content: "\007291"; /* 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%91
MD5:
24a8f0b9b0e54ccab790218211999fbe
SHA1:
8653d9ba7aaa15ff080007140083c3b6e830af61
Base64:
54qR