C:
char c = '\u0593';
printf("%c\n", c); // Output: ֓
JavaScript:
const char = '\u0593';
console.log(char); // Output: ֓
Java:
char c = '\u0593';
System.out.println(c); // Output: ֓
JSON:
{"text": "\u0593"} // Value: ֓
Python:
char = '\u0593'
print(char) # Output: ֓
Perl:
my $char = "\x{0593}";
print $char; # Output: ֓
PHP:
$char = "\x{0593}";
echo $char; // Output: ֓
Ruby:
char = "\u{0593}"
puts char # Output: ֓
Rust:
let c = '\u{593}';
println!("{}", c); // Output: ֓
Go:
char := '\u0593'
fmt.Printf("%c\n", char) // Output: ֓
CSS:
/* CSS content property */
.element::before {
content: "\000593"; /* 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%93
MD5:
12ac06863f80f65f4daca9099c754d8e
SHA1:
b24f10f6a2273cacdedee06db6fba41258edab63
Base64:
1pM=