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