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