C:
char c = '\u1162';
printf("%c\n", c); // Output: ᅢ
JavaScript:
const char = '\u1162';
console.log(char); // Output: ᅢ
Java:
char c = '\u1162';
System.out.println(c); // Output: ᅢ
JSON:
{"text": "\u1162"} // Value: ᅢ
Python:
char = '\u1162'
print(char) # Output: ᅢ
Perl:
my $char = "\x{1162}";
print $char; # Output: ᅢ
PHP:
$char = "\x{1162}";
echo $char; // Output: ᅢ
Ruby:
char = "\u{1162}"
puts char # Output: ᅢ
Rust:
let c = '\u{1162}';
println!("{}", c); // Output: ᅢ
Go:
char := '\u1162'
fmt.Printf("%c\n", char) // Output: ᅢ
CSS:
/* CSS content property */
.element::before {
content: "\001162"; /* 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%85%A2
MD5:
8322bd6e506014121a45e64d1cabc5ee
SHA1:
569ea40f4fedeee96b19429b659e306e1c3ddb1d
Base64:
4YWi