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