C:
char c = '\u0607';
printf("%c\n", c); // Output: ؇
JavaScript:
const char = '\u0607';
console.log(char); // Output: ؇
Java:
char c = '\u0607';
System.out.println(c); // Output: ؇
JSON:
{"text": "\u0607"} // Value: ؇
Python:
char = '\u0607'
print(char) # Output: ؇
Perl:
my $char = "\x{0607}";
print $char; # Output: ؇
PHP:
$char = "\x{0607}";
echo $char; // Output: ؇
Ruby:
char = "\u{0607}"
puts char # Output: ؇
Rust:
let c = '\u{607}';
println!("{}", c); // Output: ؇
Go:
char := '\u0607'
fmt.Printf("%c\n", char) // Output: ؇
CSS:
/* CSS content property */
.element::before {
content: "\000607"; /* 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%87
MD5:
8d7d4b63e90bede859f4dac7ea28936b
SHA1:
a738806903d4e41768998d6490a864051acd7d6a
Base64:
2Ic=