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