C:
char c = '\u13B5';
printf("%c\n", c); // Output: Ꮅ
JavaScript:
const char = '\u13B5';
console.log(char); // Output: Ꮅ
Java:
char c = '\u13B5';
System.out.println(c); // Output: Ꮅ
JSON:
{"text": "\u13B5"} // Value: Ꮅ
Python:
char = '\u13B5'
print(char) # Output: Ꮅ
Perl:
my $char = "\x{13B5}";
print $char; # Output: Ꮅ
PHP:
$char = "\x{13B5}";
echo $char; // Output: Ꮅ
Ruby:
char = "\u{13B5}"
puts char # Output: Ꮅ
Rust:
let c = '\u{13B5}';
println!("{}", c); // Output: Ꮅ
Go:
char := '\u13B5'
fmt.Printf("%c\n", char) // Output: Ꮅ
CSS:
/* CSS content property */
.element::before {
content: "\0013B5"; /* 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%8E%B5
MD5:
eee765bea22ab28f38d1befe4125361f
SHA1:
03d1747570dc9ace54f79cbe03f4ef1cdd0fd505
Base64:
4Y61