C:
char c = '\u7290';
printf("%c\n", c); // Output: 犐
JavaScript:
const char = '\u7290';
console.log(char); // Output: 犐
Java:
char c = '\u7290';
System.out.println(c); // Output: 犐
JSON:
{"text": "\u7290"} // Value: 犐
Python:
char = '\u7290'
print(char) # Output: 犐
Perl:
my $char = "\x{7290}";
print $char; # Output: 犐
PHP:
$char = "\x{7290}";
echo $char; // Output: 犐
Ruby:
char = "\u{7290}"
puts char # Output: 犐
Rust:
let c = '\u{7290}';
println!("{}", c); // Output: 犐
Go:
char := '\u7290'
fmt.Printf("%c\n", char) // Output: 犐
CSS:
/* CSS content property */
.element::before {
content: "\007290"; /* 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%90
MD5:
7854e980f1001cbad253f95d124736a9
SHA1:
ba44e7d4692edfca19a9a3f97c9235bf97e646f3
Base64:
54qQ