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