C:
char c = '\u04A9';
printf("%c\n", c); // Output: ҩ
JavaScript:
const char = '\u04A9';
console.log(char); // Output: ҩ
Java:
char c = '\u04A9';
System.out.println(c); // Output: ҩ
JSON:
{"text": "\u04A9"} // Value: ҩ
Python:
char = '\u04A9'
print(char) # Output: ҩ
Perl:
my $char = "\x{04A9}";
print $char; # Output: ҩ
PHP:
$char = "\x{04A9}";
echo $char; // Output: ҩ
Ruby:
char = "\u{04A9}"
puts char # Output: ҩ
Rust:
let c = '\u{4A9}';
println!("{}", c); // Output: ҩ
Go:
char := '\u04A9'
fmt.Printf("%c\n", char) // Output: ҩ
CSS:
/* CSS content property */
.element::before {
content: "\0004A9"; /* 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=%D2%A9
MD5:
bb33ba533c2ec8ead3f5bd9ca61f7d8f
SHA1:
0964d16f15ac963ce444a4ad6b0f277cd73a5df0
Base64:
0qk=