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