C:
char c = '\u0599';
printf("%c\n", c); // Output: ֙
JavaScript:
const char = '\u0599';
console.log(char); // Output: ֙
Java:
char c = '\u0599';
System.out.println(c); // Output: ֙
JSON:
{"text": "\u0599"} // Value: ֙
Python:
char = '\u0599'
print(char) # Output: ֙
Perl:
my $char = "\x{0599}";
print $char; # Output: ֙
PHP:
$char = "\x{0599}";
echo $char; // Output: ֙
Ruby:
char = "\u{0599}"
puts char # Output: ֙
Rust:
let c = '\u{599}';
println!("{}", c); // Output: ֙
Go:
char := '\u0599'
fmt.Printf("%c\n", char) // Output: ֙
CSS:
/* CSS content property */
.element::before {
content: "\000599"; /* 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%99
MD5:
e83eadf1117db0408ed5888cb9a0882b
SHA1:
62484aeea68a36f520077446e58a22504ad17022
Base64:
1pk=