C:
char c = '\u1193';
printf("%c\n", c); // Output: ᆓ
JavaScript:
const char = '\u1193';
console.log(char); // Output: ᆓ
Java:
char c = '\u1193';
System.out.println(c); // Output: ᆓ
JSON:
{"text": "\u1193"} // Value: ᆓ
Python:
char = '\u1193'
print(char) # Output: ᆓ
Perl:
my $char = "\x{1193}";
print $char; # Output: ᆓ
PHP:
$char = "\x{1193}";
echo $char; // Output: ᆓ
Ruby:
char = "\u{1193}"
puts char # Output: ᆓ
Rust:
let c = '\u{1193}';
println!("{}", c); // Output: ᆓ
Go:
char := '\u1193'
fmt.Printf("%c\n", char) // Output: ᆓ
CSS:
/* CSS content property */
.element::before {
content: "\001193"; /* 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%86%93
MD5:
f0c88a557a760ce5f54c07eb38aedf3c
SHA1:
34a675ab20df0213756b41bab41b23a12bb32518
Base64:
4YaT