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