C:
char c = '\u72A5';
printf("%c\n", c); // Output: 犥
JavaScript:
const char = '\u72A5';
console.log(char); // Output: 犥
Java:
char c = '\u72A5';
System.out.println(c); // Output: 犥
JSON:
{"text": "\u72A5"} // Value: 犥
Python:
char = '\u72A5'
print(char) # Output: 犥
Perl:
my $char = "\x{72A5}";
print $char; # Output: 犥
PHP:
$char = "\x{72A5}";
echo $char; // Output: 犥
Ruby:
char = "\u{72A5}"
puts char # Output: 犥
Rust:
let c = '\u{72A5}';
println!("{}", c); // Output: 犥
Go:
char := '\u72A5'
fmt.Printf("%c\n", char) // Output: 犥
CSS:
/* CSS content property */
.element::before {
content: "\0072A5"; /* 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%A5
MD5:
5f1996cf779a190c4ef9c84baa9003d9
SHA1:
3d4da2de936c75d002a2306a6b72bd35a310eda4
Base64:
54ql