C:
char c = '\u1898';
printf("%c\n", c); // Output: ᢘ
JavaScript:
const char = '\u1898';
console.log(char); // Output: ᢘ
Java:
char c = '\u1898';
System.out.println(c); // Output: ᢘ
JSON:
{"text": "\u1898"} // Value: ᢘ
Python:
char = '\u1898'
print(char) # Output: ᢘ
Perl:
my $char = "\x{1898}";
print $char; # Output: ᢘ
PHP:
$char = "\x{1898}";
echo $char; // Output: ᢘ
Ruby:
char = "\u{1898}"
puts char # Output: ᢘ
Rust:
let c = '\u{1898}';
println!("{}", c); // Output: ᢘ
Go:
char := '\u1898'
fmt.Printf("%c\n", char) // Output: ᢘ
CSS:
/* CSS content property */
.element::before {
content: "\001898"; /* 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%A2%98
MD5:
b633374fa5c15506ad6b869df1bc4dc1
SHA1:
92f820c67be503987c3e0cbf1a0dd2276c588ec0
Base64:
4aKY