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