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