C:
char c = '\u068F';
printf("%c\n", c); // Output: ڏ
JavaScript:
const char = '\u068F';
console.log(char); // Output: ڏ
Java:
char c = '\u068F';
System.out.println(c); // Output: ڏ
JSON:
{"text": "\u068F"} // Value: ڏ
Python:
char = '\u068F'
print(char) # Output: ڏ
Perl:
my $char = "\x{068F}";
print $char; # Output: ڏ
PHP:
$char = "\x{068F}";
echo $char; // Output: ڏ
Ruby:
char = "\u{068F}"
puts char # Output: ڏ
Rust:
let c = '\u{68F}';
println!("{}", c); // Output: ڏ
Go:
char := '\u068F'
fmt.Printf("%c\n", char) // Output: ڏ
CSS:
/* CSS content property */
.element::before {
content: "\00068F"; /* 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=%DA%8F
MD5:
a3cfd8259a6c0e55f74b47d0e877fc10
SHA1:
ea9284c8def6f4ca5fca66bc1c46d77c513dc999
Base64:
2o8=