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