C:
char c = '\u1895';
printf("%c\n", c); // Output: ᢕ
JavaScript:
const char = '\u1895';
console.log(char); // Output: ᢕ
Java:
char c = '\u1895';
System.out.println(c); // Output: ᢕ
JSON:
{"text": "\u1895"} // Value: ᢕ
Python:
char = '\u1895'
print(char) # Output: ᢕ
Perl:
my $char = "\x{1895}";
print $char; # Output: ᢕ
PHP:
$char = "\x{1895}";
echo $char; // Output: ᢕ
Ruby:
char = "\u{1895}"
puts char # Output: ᢕ
Rust:
let c = '\u{1895}';
println!("{}", c); // Output: ᢕ
Go:
char := '\u1895'
fmt.Printf("%c\n", char) // Output: ᢕ
CSS:
/* CSS content property */
.element::before {
content: "\001895"; /* 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%95
MD5:
3a7f571f6f888775ac671d1341e69dca
SHA1:
44d84b96fc9d04aaa146e08aee4bfd3db94364e6
Base64:
4aKV