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