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