C:
char c = '\u05DF';
printf("%c\n", c); // Output: ן
JavaScript:
const char = '\u05DF';
console.log(char); // Output: ן
Java:
char c = '\u05DF';
System.out.println(c); // Output: ן
JSON:
{"text": "\u05DF"} // Value: ן
Python:
char = '\u05DF'
print(char) # Output: ן
Perl:
my $char = "\x{05DF}";
print $char; # Output: ן
PHP:
$char = "\x{05DF}";
echo $char; // Output: ן
Ruby:
char = "\u{05DF}"
puts char # Output: ן
Rust:
let c = '\u{5DF}';
println!("{}", c); // Output: ן
Go:
char := '\u05DF'
fmt.Printf("%c\n", char) // Output: ן
CSS:
/* CSS content property */
.element::before {
content: "\0005DF"; /* 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=%D7%9F
MD5:
fc69df5f458b94087a2cdb16dedd3c8f
SHA1:
c4d8152c7b8fa218ee8adf08d8a1e237f718051d
Base64:
158=