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