C:
char c = '\uA945';
printf("%c\n", c); // Output: ꥅ
JavaScript:
const char = '\uA945';
console.log(char); // Output: ꥅ
Java:
char c = '\uA945';
System.out.println(c); // Output: ꥅ
JSON:
{"text": "\uA945"} // Value: ꥅ
Python:
char = '\uA945'
print(char) # Output: ꥅ
Perl:
my $char = "\x{A945}";
print $char; # Output: ꥅ
PHP:
$char = "\x{A945}";
echo $char; // Output: ꥅ
Ruby:
char = "\u{A945}"
puts char # Output: ꥅ
Rust:
let c = '\u{A945}';
println!("{}", c); // Output: ꥅ
Go:
char := '\uA945'
fmt.Printf("%c\n", char) // Output: ꥅ
CSS:
/* CSS content property */
.element::before {
content: "\00A945"; /* 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%A5%85
MD5:
ff6dd58f7e350d91b931333c1a647dff
SHA1:
597f9f3235ee9aa00cb2595cf5a2decf38e9239f
Base64:
6qWF