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