C:
char c = '\uA344';
printf("%c\n", c); // Output: ꍄ
JavaScript:
const char = '\uA344';
console.log(char); // Output: ꍄ
Java:
char c = '\uA344';
System.out.println(c); // Output: ꍄ
JSON:
{"text": "\uA344"} // Value: ꍄ
Python:
char = '\uA344'
print(char) # Output: ꍄ
Perl:
my $char = "\x{A344}";
print $char; # Output: ꍄ
PHP:
$char = "\x{A344}";
echo $char; // Output: ꍄ
Ruby:
char = "\u{A344}"
puts char # Output: ꍄ
Rust:
let c = '\u{A344}';
println!("{}", c); // Output: ꍄ
Go:
char := '\uA344'
fmt.Printf("%c\n", char) // Output: ꍄ
CSS:
/* CSS content property */
.element::before {
content: "\00A344"; /* 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=%EA%8D%84
MD5:
058ad6829c124ef30fc14e332f88c900
SHA1:
d8dde1e1be070192fd3202c0e75404b6431fa448
Base64:
6o2E