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