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