C:
char c = '\u0618';
printf("%c\n", c); // Output: ؘ
JavaScript:
const char = '\u0618';
console.log(char); // Output: ؘ
Java:
char c = '\u0618';
System.out.println(c); // Output: ؘ
JSON:
{"text": "\u0618"} // Value: ؘ
Python:
char = '\u0618'
print(char) # Output: ؘ
Perl:
my $char = "\x{0618}";
print $char; # Output: ؘ
PHP:
$char = "\x{0618}";
echo $char; // Output: ؘ
Ruby:
char = "\u{0618}"
puts char # Output: ؘ
Rust:
let c = '\u{618}';
println!("{}", c); // Output: ؘ
Go:
char := '\u0618'
fmt.Printf("%c\n", char) // Output: ؘ
CSS:
/* CSS content property */
.element::before {
content: "\000618"; /* 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%98
MD5:
392a64ad01b6784e6f2b1325421ab0df
SHA1:
5b2f2f28014008ed085c8dc298fb7a206d753a3a
Base64:
2Jg=