C:
char c = '\u199A';
printf("%c\n", c); // Output: ᦚ
JavaScript:
const char = '\u199A';
console.log(char); // Output: ᦚ
Java:
char c = '\u199A';
System.out.println(c); // Output: ᦚ
JSON:
{"text": "\u199A"} // Value: ᦚ
Python:
char = '\u199A'
print(char) # Output: ᦚ
Perl:
my $char = "\x{199A}";
print $char; # Output: ᦚ
PHP:
$char = "\x{199A}";
echo $char; // Output: ᦚ
Ruby:
char = "\u{199A}"
puts char # Output: ᦚ
Rust:
let c = '\u{199A}';
println!("{}", c); // Output: ᦚ
Go:
char := '\u199A'
fmt.Printf("%c\n", char) // Output: ᦚ
CSS:
/* CSS content property */
.element::before {
content: "\00199A"; /* 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%9A
MD5:
b88084a61e69ed0dba133ec5fda5fb01
SHA1:
79f71694c3b1b831850249ec60ec1a9e4753fc85
Base64:
4aaa