C:
char c = '\u060F';
printf("%c\n", c); // Output: ؏
JavaScript:
const char = '\u060F';
console.log(char); // Output: ؏
Java:
char c = '\u060F';
System.out.println(c); // Output: ؏
JSON:
{"text": "\u060F"} // Value: ؏
Python:
char = '\u060F'
print(char) # Output: ؏
Perl:
my $char = "\x{060F}";
print $char; # Output: ؏
PHP:
$char = "\x{060F}";
echo $char; // Output: ؏
Ruby:
char = "\u{060F}"
puts char # Output: ؏
Rust:
let c = '\u{60F}';
println!("{}", c); // Output: ؏
Go:
char := '\u060F'
fmt.Printf("%c\n", char) // Output: ؏
CSS:
/* CSS content property */
.element::before {
content: "\00060F"; /* 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=%D8%8F
MD5:
323e3344183448715b77d2c793d84694
SHA1:
4287d7b80ae3694e6f2c6cd285e52fd48239e049
Base64:
2I8=