C:
char c = '\u0646';
printf("%c\n", c); // Output: ن
JavaScript:
const char = '\u0646';
console.log(char); // Output: ن
Java:
char c = '\u0646';
System.out.println(c); // Output: ن
JSON:
{"text": "\u0646"} // Value: ن
Python:
char = '\u0646'
print(char) # Output: ن
Perl:
my $char = "\x{0646}";
print $char; # Output: ن
PHP:
$char = "\x{0646}";
echo $char; // Output: ن
Ruby:
char = "\u{0646}"
puts char # Output: ن
Rust:
let c = '\u{646}';
println!("{}", c); // Output: ن
Go:
char := '\u0646'
fmt.Printf("%c\n", char) // Output: ن
CSS:
/* CSS content property */
.element::before {
content: "\000646"; /* 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%86
MD5:
b68b5fb1705b648595f87c1b92e68214
SHA1:
178a13dd6313268486b1c22e1f46eeec009490da
Base64:
2YY=