C:
char c = '\u1494';
printf("%c\n", c); // Output: ᒔ
JavaScript:
const char = '\u1494';
console.log(char); // Output: ᒔ
Java:
char c = '\u1494';
System.out.println(c); // Output: ᒔ
JSON:
{"text": "\u1494"} // Value: ᒔ
Python:
char = '\u1494'
print(char) # Output: ᒔ
Perl:
my $char = "\x{1494}";
print $char; # Output: ᒔ
PHP:
$char = "\x{1494}";
echo $char; // Output: ᒔ
Ruby:
char = "\u{1494}"
puts char # Output: ᒔ
Rust:
let c = '\u{1494}';
println!("{}", c); // Output: ᒔ
Go:
char := '\u1494'
fmt.Printf("%c\n", char) // Output: ᒔ
CSS:
/* CSS content property */
.element::before {
content: "\001494"; /* 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%94
MD5:
9aa56a86ab55aa9fba1e8a4d1d0b3797
SHA1:
debe410046a1a74102253e375baed580a38d2443
Base64:
4ZKU