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