C:
char c = '\u0619';
printf("%c\n", c); // Output: ؙ
JavaScript:
const char = '\u0619';
console.log(char); // Output: ؙ
Java:
char c = '\u0619';
System.out.println(c); // Output: ؙ
JSON:
{"text": "\u0619"} // Value: ؙ
Python:
char = '\u0619'
print(char) # Output: ؙ
Perl:
my $char = "\x{0619}";
print $char; # Output: ؙ
PHP:
$char = "\x{0619}";
echo $char; // Output: ؙ
Ruby:
char = "\u{0619}"
puts char # Output: ؙ
Rust:
let c = '\u{619}';
println!("{}", c); // Output: ؙ
Go:
char := '\u0619'
fmt.Printf("%c\n", char) // Output: ؙ
CSS:
/* CSS content property */
.element::before {
content: "\000619"; /* 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%99
MD5:
2ed23c62d4f9c39f8b5280643cc7688a
SHA1:
bd58abea544491b14702739738536a39587c304b
Base64:
2Jk=