C:
char c = '\u1159';
printf("%c\n", c); // Output: ᅙ
JavaScript:
const char = '\u1159';
console.log(char); // Output: ᅙ
Java:
char c = '\u1159';
System.out.println(c); // Output: ᅙ
JSON:
{"text": "\u1159"} // Value: ᅙ
Python:
char = '\u1159'
print(char) # Output: ᅙ
Perl:
my $char = "\x{1159}";
print $char; # Output: ᅙ
PHP:
$char = "\x{1159}";
echo $char; // Output: ᅙ
Ruby:
char = "\u{1159}"
puts char # Output: ᅙ
Rust:
let c = '\u{1159}';
println!("{}", c); // Output: ᅙ
Go:
char := '\u1159'
fmt.Printf("%c\n", char) // Output: ᅙ
CSS:
/* CSS content property */
.element::before {
content: "\001159"; /* 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%99
MD5:
867d7e0570e519d2d20e6547e7279c0f
SHA1:
5fdee3d9ba900583aadedf5ac70c568fdad8714c
Base64:
4YWZ