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