C:
char c = '\u7295';
printf("%c\n", c); // Output: 犕
JavaScript:
const char = '\u7295';
console.log(char); // Output: 犕
Java:
char c = '\u7295';
System.out.println(c); // Output: 犕
JSON:
{"text": "\u7295"} // Value: 犕
Python:
char = '\u7295'
print(char) # Output: 犕
Perl:
my $char = "\x{7295}";
print $char; # Output: 犕
PHP:
$char = "\x{7295}";
echo $char; // Output: 犕
Ruby:
char = "\u{7295}"
puts char # Output: 犕
Rust:
let c = '\u{7295}';
println!("{}", c); // Output: 犕
Go:
char := '\u7295'
fmt.Printf("%c\n", char) // Output: 犕
CSS:
/* CSS content property */
.element::before {
content: "\007295"; /* 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%95
MD5:
4def050f8ae0562286f94bbb2ac3ca4e
SHA1:
4efb432d3f4da16eb71a0e9a89c7b06bddfbcc46
Base64:
54qV