C:
char c = '\u05C5';
printf("%c\n", c); // Output: ׅ
JavaScript:
const char = '\u05C5';
console.log(char); // Output: ׅ
Java:
char c = '\u05C5';
System.out.println(c); // Output: ׅ
JSON:
{"text": "\u05C5"} // Value: ׅ
Python:
char = '\u05C5'
print(char) # Output: ׅ
Perl:
my $char = "\x{05C5}";
print $char; # Output: ׅ
PHP:
$char = "\x{05C5}";
echo $char; // Output: ׅ
Ruby:
char = "\u{05C5}"
puts char # Output: ׅ
Rust:
let c = '\u{5C5}';
println!("{}", c); // Output: ׅ
Go:
char := '\u05C5'
fmt.Printf("%c\n", char) // Output: ׅ
CSS:
/* CSS content property */
.element::before {
content: "\0005C5"; /* 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%85
MD5:
44fd96a1faae0ffee78932af2b20abcc
SHA1:
98ddbf73856ca2c5a73e7592cebc453f8741423e
Base64:
14U=