C:
char c = '\u1BA1';
printf("%c\n", c); // Output: ᮡ
JavaScript:
const char = '\u1BA1';
console.log(char); // Output: ᮡ
Java:
char c = '\u1BA1';
System.out.println(c); // Output: ᮡ
JSON:
{"text": "\u1BA1"} // Value: ᮡ
Python:
char = '\u1BA1'
print(char) # Output: ᮡ
Perl:
my $char = "\x{1BA1}";
print $char; # Output: ᮡ
PHP:
$char = "\x{1BA1}";
echo $char; // Output: ᮡ
Ruby:
char = "\u{1BA1}"
puts char # Output: ᮡ
Rust:
let c = '\u{1BA1}';
println!("{}", c); // Output: ᮡ
Go:
char := '\u1BA1'
fmt.Printf("%c\n", char) // Output: ᮡ
CSS:
/* CSS content property */
.element::before {
content: "\001BA1"; /* 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%AE%A1
MD5:
2421035aefeef4e740bd389f2e631c7c
SHA1:
bf27d13da5e12adfa2658c70a734b048720a2cc5
Base64:
4a6h