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