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