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