C:
char c = '\u0768';
printf("%c\n", c); // Output: ݨ
JavaScript:
const char = '\u0768';
console.log(char); // Output: ݨ
Java:
char c = '\u0768';
System.out.println(c); // Output: ݨ
JSON:
{"text": "\u0768"} // Value: ݨ
Python:
char = '\u0768'
print(char) # Output: ݨ
Perl:
my $char = "\x{0768}";
print $char; # Output: ݨ
PHP:
$char = "\x{0768}";
echo $char; // Output: ݨ
Ruby:
char = "\u{0768}"
puts char # Output: ݨ
Rust:
let c = '\u{768}';
println!("{}", c); // Output: ݨ
Go:
char := '\u0768'
fmt.Printf("%c\n", char) // Output: ݨ
CSS:
/* CSS content property */
.element::before {
content: "\000768"; /* 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=%DD%A8
MD5:
3a6d30d036e4cbce7f704a6ac06eecdd
SHA1:
4a3904221ca4a87d8b9c0db684472313bdaf6de0
Base64:
3ag=