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