C:
char c = '\u064F';
printf("%c\n", c); // Output: ُ
JavaScript:
const char = '\u064F';
console.log(char); // Output: ُ
Java:
char c = '\u064F';
System.out.println(c); // Output: ُ
JSON:
{"text": "\u064F"} // Value: ُ
Python:
char = '\u064F'
print(char) # Output: ُ
Perl:
my $char = "\x{064F}";
print $char; # Output: ُ
PHP:
$char = "\x{064F}";
echo $char; // Output: ُ
Ruby:
char = "\u{064F}"
puts char # Output: ُ
Rust:
let c = '\u{64F}';
println!("{}", c); // Output: ُ
Go:
char := '\u064F'
fmt.Printf("%c\n", char) // Output: ُ
CSS:
/* CSS content property */
.element::before {
content: "\00064F"; /* 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%8F
MD5:
bc4827bfb9e3650a8140b582b8a14c64
SHA1:
0a1ca71775533553d92f48cd0c5b652d89547673
Base64:
2Y8=