C:
char c = '\u1897';
printf("%c\n", c); // Output: ᢗ
JavaScript:
const char = '\u1897';
console.log(char); // Output: ᢗ
Java:
char c = '\u1897';
System.out.println(c); // Output: ᢗ
JSON:
{"text": "\u1897"} // Value: ᢗ
Python:
char = '\u1897'
print(char) # Output: ᢗ
Perl:
my $char = "\x{1897}";
print $char; # Output: ᢗ
PHP:
$char = "\x{1897}";
echo $char; // Output: ᢗ
Ruby:
char = "\u{1897}"
puts char # Output: ᢗ
Rust:
let c = '\u{1897}';
println!("{}", c); // Output: ᢗ
Go:
char := '\u1897'
fmt.Printf("%c\n", char) // Output: ᢗ
CSS:
/* CSS content property */
.element::before {
content: "\001897"; /* 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%97
MD5:
83da4e5e33c849cb1fafd2bfb1d736dc
SHA1:
2a91c4f732f770a4ea6df802f06028f454fa58e2
Base64:
4aKX