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