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