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