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