C:
char c = '\u1993';
printf("%c\n", c); // Output: ᦓ
JavaScript:
const char = '\u1993';
console.log(char); // Output: ᦓ
Java:
char c = '\u1993';
System.out.println(c); // Output: ᦓ
JSON:
{"text": "\u1993"} // Value: ᦓ
Python:
char = '\u1993'
print(char) # Output: ᦓ
Perl:
my $char = "\x{1993}";
print $char; # Output: ᦓ
PHP:
$char = "\x{1993}";
echo $char; // Output: ᦓ
Ruby:
char = "\u{1993}"
puts char # Output: ᦓ
Rust:
let c = '\u{1993}';
println!("{}", c); // Output: ᦓ
Go:
char := '\u1993'
fmt.Printf("%c\n", char) // Output: ᦓ
CSS:
/* CSS content property */
.element::before {
content: "\001993"; /* 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%A6%93
MD5:
34d801f3771865a6e8d3e4a9d954e104
SHA1:
e8f9d1223d2432b0e6fdb94a10bf529c87fbfcd4
Base64:
4aaT