C:
char c = '\u05E2';
printf("%c\n", c); // Output: ע
JavaScript:
const char = '\u05E2';
console.log(char); // Output: ע
Java:
char c = '\u05E2';
System.out.println(c); // Output: ע
JSON:
{"text": "\u05E2"} // Value: ע
Python:
char = '\u05E2'
print(char) # Output: ע
Perl:
my $char = "\x{05E2}";
print $char; # Output: ע
PHP:
$char = "\x{05E2}";
echo $char; // Output: ע
Ruby:
char = "\u{05E2}"
puts char # Output: ע
Rust:
let c = '\u{5E2}';
println!("{}", c); // Output: ע
Go:
char := '\u05E2'
fmt.Printf("%c\n", char) // Output: ע
CSS:
/* CSS content property */
.element::before {
content: "\0005E2"; /* 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=%D7%A2
MD5:
f1afb4c8d01a1a3453d5858318eae036
SHA1:
29053d742cca1cf79efe7faa8111c104022e9118
Base64:
16I=