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