C:
char c = '\u059A';
printf("%c\n", c); // Output: ֚
JavaScript:
const char = '\u059A';
console.log(char); // Output: ֚
Java:
char c = '\u059A';
System.out.println(c); // Output: ֚
JSON:
{"text": "\u059A"} // Value: ֚
Python:
char = '\u059A'
print(char) # Output: ֚
Perl:
my $char = "\x{059A}";
print $char; # Output: ֚
PHP:
$char = "\x{059A}";
echo $char; // Output: ֚
Ruby:
char = "\u{059A}"
puts char # Output: ֚
Rust:
let c = '\u{59A}';
println!("{}", c); // Output: ֚
Go:
char := '\u059A'
fmt.Printf("%c\n", char) // Output: ֚
CSS:
/* CSS content property */
.element::before {
content: "\00059A"; /* 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%9A
MD5:
e594ba6a3bd1ac7dffabd367cc6b3ef8
SHA1:
23a2ccfa5bb331029b713df188c25ea1871ee2e1
Base64:
1po=