C:
char c = '\u0642';
printf("%c\n", c); // Output: ق
JavaScript:
const char = '\u0642';
console.log(char); // Output: ق
Java:
char c = '\u0642';
System.out.println(c); // Output: ق
JSON:
{"text": "\u0642"} // Value: ق
Python:
char = '\u0642'
print(char) # Output: ق
Perl:
my $char = "\x{0642}";
print $char; # Output: ق
PHP:
$char = "\x{0642}";
echo $char; // Output: ق
Ruby:
char = "\u{0642}"
puts char # Output: ق
Rust:
let c = '\u{642}';
println!("{}", c); // Output: ق
Go:
char := '\u0642'
fmt.Printf("%c\n", char) // Output: ق
CSS:
/* CSS content property */
.element::before {
content: "\000642"; /* 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%82
MD5:
b32d1a2ac4d2d56be24b4a21eed89334
SHA1:
c4076e05c966fb824c34dad48bff0b5e2bd08d72
Base64:
2YI=