C:
char c = '\u1740';
printf("%c\n", c); // Output: ᝀ
JavaScript:
const char = '\u1740';
console.log(char); // Output: ᝀ
Java:
char c = '\u1740';
System.out.println(c); // Output: ᝀ
JSON:
{"text": "\u1740"} // Value: ᝀ
Python:
char = '\u1740'
print(char) # Output: ᝀ
Perl:
my $char = "\x{1740}";
print $char; # Output: ᝀ
PHP:
$char = "\x{1740}";
echo $char; // Output: ᝀ
Ruby:
char = "\u{1740}"
puts char # Output: ᝀ
Rust:
let c = '\u{1740}';
println!("{}", c); // Output: ᝀ
Go:
char := '\u1740'
fmt.Printf("%c\n", char) // Output: ᝀ
CSS:
/* CSS content property */
.element::before {
content: "\001740"; /* 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=%E1%9D%80
MD5:
6ccad13fc7edca510c4f7c9641aad44f
SHA1:
5da563406539358541d1727c23cdff42bb28a3e4
Base64:
4Z2A