C:
char c = '\u05F4';
printf("%c\n", c); // Output: ״
JavaScript:
const char = '\u05F4';
console.log(char); // Output: ״
Java:
char c = '\u05F4';
System.out.println(c); // Output: ״
JSON:
{"text": "\u05F4"} // Value: ״
Python:
char = '\u05F4'
print(char) # Output: ״
Perl:
my $char = "\x{05F4}";
print $char; # Output: ״
PHP:
$char = "\x{05F4}";
echo $char; // Output: ״
Ruby:
char = "\u{05F4}"
puts char # Output: ״
Rust:
let c = '\u{5F4}';
println!("{}", c); // Output: ״
Go:
char := '\u05F4'
fmt.Printf("%c\n", char) // Output: ״
CSS:
/* CSS content property */
.element::before {
content: "\0005F4"; /* 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%B4
MD5:
491cbcd858960fc19f8218b840062c4f
SHA1:
391c42e6df0247e2a1d9bc80172785a9d5ba1da0
Base64:
17Q=