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