C:
char c = '\u11A1';
printf("%c\n", c); // Output: ᆡ
JavaScript:
const char = '\u11A1';
console.log(char); // Output: ᆡ
Java:
char c = '\u11A1';
System.out.println(c); // Output: ᆡ
JSON:
{"text": "\u11A1"} // Value: ᆡ
Python:
char = '\u11A1'
print(char) # Output: ᆡ
Perl:
my $char = "\x{11A1}";
print $char; # Output: ᆡ
PHP:
$char = "\x{11A1}";
echo $char; // Output: ᆡ
Ruby:
char = "\u{11A1}"
puts char # Output: ᆡ
Rust:
let c = '\u{11A1}';
println!("{}", c); // Output: ᆡ
Go:
char := '\u11A1'
fmt.Printf("%c\n", char) // Output: ᆡ
CSS:
/* CSS content property */
.element::before {
content: "\0011A1"; /* 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%A1
MD5:
372e0c3358158149ece06bcd35489572
SHA1:
bbde16c059f8592f51feaa9e831672886261e5e5
Base64:
4Yah