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