C:
char c = '\u0635';
printf("%c\n", c); // Output: ص
JavaScript:
const char = '\u0635';
console.log(char); // Output: ص
Java:
char c = '\u0635';
System.out.println(c); // Output: ص
JSON:
{"text": "\u0635"} // Value: ص
Python:
char = '\u0635'
print(char) # Output: ص
Perl:
my $char = "\x{0635}";
print $char; # Output: ص
PHP:
$char = "\x{0635}";
echo $char; // Output: ص
Ruby:
char = "\u{0635}"
puts char # Output: ص
Rust:
let c = '\u{635}';
println!("{}", c); // Output: ص
Go:
char := '\u0635'
fmt.Printf("%c\n", char) // Output: ص
CSS:
/* CSS content property */
.element::before {
content: "\000635"; /* 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%B5
MD5:
8cebea0bb022a92b5caf8fed36a09439
SHA1:
928a192ed5f39a95b3875f345315ebc03b3bb7d5
Base64:
2LU=