C:
char c = '\u065A';
printf("%c\n", c); // Output: ٚ
JavaScript:
const char = '\u065A';
console.log(char); // Output: ٚ
Java:
char c = '\u065A';
System.out.println(c); // Output: ٚ
JSON:
{"text": "\u065A"} // Value: ٚ
Python:
char = '\u065A'
print(char) # Output: ٚ
Perl:
my $char = "\x{065A}";
print $char; # Output: ٚ
PHP:
$char = "\x{065A}";
echo $char; // Output: ٚ
Ruby:
char = "\u{065A}"
puts char # Output: ٚ
Rust:
let c = '\u{65A}';
println!("{}", c); // Output: ٚ
Go:
char := '\u065A'
fmt.Printf("%c\n", char) // Output: ٚ
CSS:
/* CSS content property */
.element::before {
content: "\00065A"; /* 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%9A
MD5:
f93a7fd34a43c47acc9cceff91e2f79b
SHA1:
e1778616bc0c6bcef09fc857a6a5591f2f6b68ad
Base64:
2Zo=