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