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