C:
char c = '\u1163';
printf("%c\n", c); // Output: ᅣ
JavaScript:
const char = '\u1163';
console.log(char); // Output: ᅣ
Java:
char c = '\u1163';
System.out.println(c); // Output: ᅣ
JSON:
{"text": "\u1163"} // Value: ᅣ
Python:
char = '\u1163'
print(char) # Output: ᅣ
Perl:
my $char = "\x{1163}";
print $char; # Output: ᅣ
PHP:
$char = "\x{1163}";
echo $char; // Output: ᅣ
Ruby:
char = "\u{1163}"
puts char # Output: ᅣ
Rust:
let c = '\u{1163}';
println!("{}", c); // Output: ᅣ
Go:
char := '\u1163'
fmt.Printf("%c\n", char) // Output: ᅣ
CSS:
/* CSS content property */
.element::before {
content: "\001163"; /* 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%A3
MD5:
e5b544d6c2e1a123c7f3c5701c64460d
SHA1:
9efe2b79bd8c1fad11e1ba103f1821c7eb021f66
Base64:
4YWj