C:
char c = '\u19AB';
printf("%c\n", c); // Output: ᦫ
JavaScript:
const char = '\u19AB';
console.log(char); // Output: ᦫ
Java:
char c = '\u19AB';
System.out.println(c); // Output: ᦫ
JSON:
{"text": "\u19AB"} // Value: ᦫ
Python:
char = '\u19AB'
print(char) # Output: ᦫ
Perl:
my $char = "\x{19AB}";
print $char; # Output: ᦫ
PHP:
$char = "\x{19AB}";
echo $char; // Output: ᦫ
Ruby:
char = "\u{19AB}"
puts char # Output: ᦫ
Rust:
let c = '\u{19AB}';
println!("{}", c); // Output: ᦫ
Go:
char := '\u19AB'
fmt.Printf("%c\n", char) // Output: ᦫ
CSS:
/* CSS content property */
.element::before {
content: "\0019AB"; /* 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%AB
MD5:
29ace3612b11022d187a4d8cfdb036dd
SHA1:
dfcf7125d8234030b85a7156829ed5914710c09f
Base64:
4aar