C:
char c = '\u1171';
printf("%c\n", c); // Output: ᅱ
JavaScript:
const char = '\u1171';
console.log(char); // Output: ᅱ
Java:
char c = '\u1171';
System.out.println(c); // Output: ᅱ
JSON:
{"text": "\u1171"} // Value: ᅱ
Python:
char = '\u1171'
print(char) # Output: ᅱ
Perl:
my $char = "\x{1171}";
print $char; # Output: ᅱ
PHP:
$char = "\x{1171}";
echo $char; // Output: ᅱ
Ruby:
char = "\u{1171}"
puts char # Output: ᅱ
Rust:
let c = '\u{1171}';
println!("{}", c); // Output: ᅱ
Go:
char := '\u1171'
fmt.Printf("%c\n", char) // Output: ᅱ
CSS:
/* CSS content property */
.element::before {
content: "\001171"; /* 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%B1
MD5:
8caccec245962d15535b80cc2a787b48
SHA1:
a6fb82dbdcd061be23609d2884abd8c850c841e1
Base64:
4YWx