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