C:
char c = '\u1148';
printf("%c\n", c); // Output: ᅈ
JavaScript:
const char = '\u1148';
console.log(char); // Output: ᅈ
Java:
char c = '\u1148';
System.out.println(c); // Output: ᅈ
JSON:
{"text": "\u1148"} // Value: ᅈ
Python:
char = '\u1148'
print(char) # Output: ᅈ
Perl:
my $char = "\x{1148}";
print $char; # Output: ᅈ
PHP:
$char = "\x{1148}";
echo $char; // Output: ᅈ
Ruby:
char = "\u{1148}"
puts char # Output: ᅈ
Rust:
let c = '\u{1148}';
println!("{}", c); // Output: ᅈ
Go:
char := '\u1148'
fmt.Printf("%c\n", char) // Output: ᅈ
CSS:
/* CSS content property */
.element::before {
content: "\001148"; /* 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%88
MD5:
3ad7614a6f3c25f277cd71429ae6b790
SHA1:
6f11250251846549fe14afbd2fe952541f744ab2
Base64:
4YWI