C:
char c = '\u0633';
printf("%c\n", c); // Output: س
JavaScript:
const char = '\u0633';
console.log(char); // Output: س
Java:
char c = '\u0633';
System.out.println(c); // Output: س
JSON:
{"text": "\u0633"} // Value: س
Python:
char = '\u0633'
print(char) # Output: س
Perl:
my $char = "\x{0633}";
print $char; # Output: س
PHP:
$char = "\x{0633}";
echo $char; // Output: س
Ruby:
char = "\u{0633}"
puts char # Output: س
Rust:
let c = '\u{633}';
println!("{}", c); // Output: س
Go:
char := '\u0633'
fmt.Printf("%c\n", char) // Output: س
CSS:
/* CSS content property */
.element::before {
content: "\000633"; /* 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%B3
MD5:
7bfb0205b614d623e2921b347a36802f
SHA1:
499cc95fd8e42581605bf1fb3d4ccfa53f1c8c61
Base64:
2LM=