C:
char c = '\u06A8';
printf("%c\n", c); // Output: ڨ
JavaScript:
const char = '\u06A8';
console.log(char); // Output: ڨ
Java:
char c = '\u06A8';
System.out.println(c); // Output: ڨ
JSON:
{"text": "\u06A8"} // Value: ڨ
Python:
char = '\u06A8'
print(char) # Output: ڨ
Perl:
my $char = "\x{06A8}";
print $char; # Output: ڨ
PHP:
$char = "\x{06A8}";
echo $char; // Output: ڨ
Ruby:
char = "\u{06A8}"
puts char # Output: ڨ
Rust:
let c = '\u{6A8}';
println!("{}", c); // Output: ڨ
Go:
char := '\u06A8'
fmt.Printf("%c\n", char) // Output: ڨ
CSS:
/* CSS content property */
.element::before {
content: "\0006A8"; /* 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%A8
MD5:
359f17c75668641fd5d2d59083d358ed
SHA1:
19214e3bf5a26497cde4a81dea9cac70663bb79e
Base64:
2qg=