C:
char c = '\u1893';
printf("%c\n", c); // Output: ᢓ
JavaScript:
const char = '\u1893';
console.log(char); // Output: ᢓ
Java:
char c = '\u1893';
System.out.println(c); // Output: ᢓ
JSON:
{"text": "\u1893"} // Value: ᢓ
Python:
char = '\u1893'
print(char) # Output: ᢓ
Perl:
my $char = "\x{1893}";
print $char; # Output: ᢓ
PHP:
$char = "\x{1893}";
echo $char; // Output: ᢓ
Ruby:
char = "\u{1893}"
puts char # Output: ᢓ
Rust:
let c = '\u{1893}';
println!("{}", c); // Output: ᢓ
Go:
char := '\u1893'
fmt.Printf("%c\n", char) // Output: ᢓ
CSS:
/* CSS content property */
.element::before {
content: "\001893"; /* 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%93
MD5:
8ffa898909726abb937cd651fa820759
SHA1:
7103199aaf737f51b91f7bf1708b946ce0f7b3a6
Base64:
4aKT