C:
char c = '\u1161';
printf("%c\n", c); // Output: ᅡ
JavaScript:
const char = '\u1161';
console.log(char); // Output: ᅡ
Java:
char c = '\u1161';
System.out.println(c); // Output: ᅡ
JSON:
{"text": "\u1161"} // Value: ᅡ
Python:
char = '\u1161'
print(char) # Output: ᅡ
Perl:
my $char = "\x{1161}";
print $char; # Output: ᅡ
PHP:
$char = "\x{1161}";
echo $char; // Output: ᅡ
Ruby:
char = "\u{1161}"
puts char # Output: ᅡ
Rust:
let c = '\u{1161}';
println!("{}", c); // Output: ᅡ
Go:
char := '\u1161'
fmt.Printf("%c\n", char) // Output: ᅡ
CSS:
/* CSS content property */
.element::before {
content: "\001161"; /* 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%A1
MD5:
d2467ae57b3d004bdfc10b5c6dbad476
SHA1:
eaec360270a01fe1596a36619db49fc82dcc152a
Base64:
4YWh