C:
char c = '\u0591';
printf("%c\n", c); // Output: ֑
JavaScript:
const char = '\u0591';
console.log(char); // Output: ֑
Java:
char c = '\u0591';
System.out.println(c); // Output: ֑
JSON:
{"text": "\u0591"} // Value: ֑
Python:
char = '\u0591'
print(char) # Output: ֑
Perl:
my $char = "\x{0591}";
print $char; # Output: ֑
PHP:
$char = "\x{0591}";
echo $char; // Output: ֑
Ruby:
char = "\u{0591}"
puts char # Output: ֑
Rust:
let c = '\u{591}';
println!("{}", c); // Output: ֑
Go:
char := '\u0591'
fmt.Printf("%c\n", char) // Output: ֑
CSS:
/* CSS content property */
.element::before {
content: "\000591"; /* 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%91
MD5:
01f2ce12c2d8f4d3d6f0fb26720f2e55
SHA1:
aca387ce1ae2a791e830f5ee4a0f7f14c5d5d43a
Base64:
1pE=