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