C:
char c = '\u1166';
printf("%c\n", c); // Output: ᅦ
JavaScript:
const char = '\u1166';
console.log(char); // Output: ᅦ
Java:
char c = '\u1166';
System.out.println(c); // Output: ᅦ
JSON:
{"text": "\u1166"} // Value: ᅦ
Python:
char = '\u1166'
print(char) # Output: ᅦ
Perl:
my $char = "\x{1166}";
print $char; # Output: ᅦ
PHP:
$char = "\x{1166}";
echo $char; // Output: ᅦ
Ruby:
char = "\u{1166}"
puts char # Output: ᅦ
Rust:
let c = '\u{1166}';
println!("{}", c); // Output: ᅦ
Go:
char := '\u1166'
fmt.Printf("%c\n", char) // Output: ᅦ
CSS:
/* CSS content property */
.element::before {
content: "\001166"; /* 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%A6
MD5:
43f17cc14157457d594cb0a66af045ca
SHA1:
b1c5fccea0770828b485d76f534128ae84bb6099
Base64:
4YWm