C:
char c = '\u0589';
printf("%c\n", c); // Output: ։
JavaScript:
const char = '\u0589';
console.log(char); // Output: ։
Java:
char c = '\u0589';
System.out.println(c); // Output: ։
JSON:
{"text": "\u0589"} // Value: ։
Python:
char = '\u0589'
print(char) # Output: ։
Perl:
my $char = "\x{0589}";
print $char; # Output: ։
PHP:
$char = "\x{0589}";
echo $char; // Output: ։
Ruby:
char = "\u{0589}"
puts char # Output: ։
Rust:
let c = '\u{589}';
println!("{}", c); // Output: ։
Go:
char := '\u0589'
fmt.Printf("%c\n", char) // Output: ։
CSS:
/* CSS content property */
.element::before {
content: "\000589"; /* 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%89
MD5:
3f133e7570144df3079129afcf897e13
SHA1:
887f4c347dac81182b05d4a19d59a67fc35935f2
Base64:
1ok=