C:
char c = '\u0594';
printf("%c\n", c); // Output: ֔
JavaScript:
const char = '\u0594';
console.log(char); // Output: ֔
Java:
char c = '\u0594';
System.out.println(c); // Output: ֔
JSON:
{"text": "\u0594"} // Value: ֔
Python:
char = '\u0594'
print(char) # Output: ֔
Perl:
my $char = "\x{0594}";
print $char; # Output: ֔
PHP:
$char = "\x{0594}";
echo $char; // Output: ֔
Ruby:
char = "\u{0594}"
puts char # Output: ֔
Rust:
let c = '\u{594}';
println!("{}", c); // Output: ֔
Go:
char := '\u0594'
fmt.Printf("%c\n", char) // Output: ֔
CSS:
/* CSS content property */
.element::before {
content: "\000594"; /* 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%94
MD5:
0b90bb34c98727d69e6600c957cf27ff
SHA1:
bd93a15c16890bac906b4c89aee50c28bbaf8071
Base64:
1pQ=