C:
char c = '\u0636';
printf("%c\n", c); // Output: ض
JavaScript:
const char = '\u0636';
console.log(char); // Output: ض
Java:
char c = '\u0636';
System.out.println(c); // Output: ض
JSON:
{"text": "\u0636"} // Value: ض
Python:
char = '\u0636'
print(char) # Output: ض
Perl:
my $char = "\x{0636}";
print $char; # Output: ض
PHP:
$char = "\x{0636}";
echo $char; // Output: ض
Ruby:
char = "\u{0636}"
puts char # Output: ض
Rust:
let c = '\u{636}';
println!("{}", c); // Output: ض
Go:
char := '\u0636'
fmt.Printf("%c\n", char) // Output: ض
CSS:
/* CSS content property */
.element::before {
content: "\000636"; /* 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%B6
MD5:
7f0096f75c7069780fbda37faef3e83b
SHA1:
e3303f1a82e8e5ca4c85f279efd386b94c4a4ae1
Base64:
2LY=