C:
char c = '\u1BA2';
printf("%c\n", c); // Output: ᮢ
JavaScript:
const char = '\u1BA2';
console.log(char); // Output: ᮢ
Java:
char c = '\u1BA2';
System.out.println(c); // Output: ᮢ
JSON:
{"text": "\u1BA2"} // Value: ᮢ
Python:
char = '\u1BA2'
print(char) # Output: ᮢ
Perl:
my $char = "\x{1BA2}";
print $char; # Output: ᮢ
PHP:
$char = "\x{1BA2}";
echo $char; // Output: ᮢ
Ruby:
char = "\u{1BA2}"
puts char # Output: ᮢ
Rust:
let c = '\u{1BA2}';
println!("{}", c); // Output: ᮢ
Go:
char := '\u1BA2'
fmt.Printf("%c\n", char) // Output: ᮢ
CSS:
/* CSS content property */
.element::before {
content: "\001BA2"; /* 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%A2
MD5:
28ddaaa8e8c6f3976473082840a0f891
SHA1:
391a73d57fc2074d93943879f94c0f1fa6d751f4
Base64:
4a6i