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