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