C:
char c = '\u0598';
printf("%c\n", c); // Output: ֘
JavaScript:
const char = '\u0598';
console.log(char); // Output: ֘
Java:
char c = '\u0598';
System.out.println(c); // Output: ֘
JSON:
{"text": "\u0598"} // Value: ֘
Python:
char = '\u0598'
print(char) # Output: ֘
Perl:
my $char = "\x{0598}";
print $char; # Output: ֘
PHP:
$char = "\x{0598}";
echo $char; // Output: ֘
Ruby:
char = "\u{0598}"
puts char # Output: ֘
Rust:
let c = '\u{598}';
println!("{}", c); // Output: ֘
Go:
char := '\u0598'
fmt.Printf("%c\n", char) // Output: ֘
CSS:
/* CSS content property */
.element::before {
content: "\000598"; /* 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%98
MD5:
337d60ee4cb0bcda8a4b8d389e813b72
SHA1:
bc92ded1a841d8540333cae75825543add49e3d7
Base64:
1pg=