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