C:
char c = '\u060D';
printf("%c\n", c); // Output: ؍
JavaScript:
const char = '\u060D';
console.log(char); // Output: ؍
Java:
char c = '\u060D';
System.out.println(c); // Output: ؍
JSON:
{"text": "\u060D"} // Value: ؍
Python:
char = '\u060D'
print(char) # Output: ؍
Perl:
my $char = "\x{060D}";
print $char; # Output: ؍
PHP:
$char = "\x{060D}";
echo $char; // Output: ؍
Ruby:
char = "\u{060D}"
puts char # Output: ؍
Rust:
let c = '\u{60D}';
println!("{}", c); // Output: ؍
Go:
char := '\u060D'
fmt.Printf("%c\n", char) // Output: ؍
CSS:
/* CSS content property */
.element::before {
content: "\00060D"; /* 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=%D8%8D
MD5:
e1d67ab15202353eeabb6f6e0d429063
SHA1:
b2d55945e3d4ff77ac894a2d9f9caa6a04e4a468
Base64:
2I0=