C:
char c = '\u0659';
printf("%c\n", c); // Output: ٙ
JavaScript:
const char = '\u0659';
console.log(char); // Output: ٙ
Java:
char c = '\u0659';
System.out.println(c); // Output: ٙ
JSON:
{"text": "\u0659"} // Value: ٙ
Python:
char = '\u0659'
print(char) # Output: ٙ
Perl:
my $char = "\x{0659}";
print $char; # Output: ٙ
PHP:
$char = "\x{0659}";
echo $char; // Output: ٙ
Ruby:
char = "\u{0659}"
puts char # Output: ٙ
Rust:
let c = '\u{659}';
println!("{}", c); // Output: ٙ
Go:
char := '\u0659'
fmt.Printf("%c\n", char) // Output: ٙ
CSS:
/* CSS content property */
.element::before {
content: "\000659"; /* 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=%D9%99
MD5:
a622db6bf63aa4f5b0bcf765e7aaa2b2
SHA1:
854214f7ba75866f704078c005e570f12d05e0be
Base64:
2Zk=