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