C:
char c = '\u1205';
printf("%c\n", c); // Output: ህ
JavaScript:
const char = '\u1205';
console.log(char); // Output: ህ
Java:
char c = '\u1205';
System.out.println(c); // Output: ህ
JSON:
{"text": "\u1205"} // Value: ህ
Python:
char = '\u1205'
print(char) # Output: ህ
Perl:
my $char = "\x{1205}";
print $char; # Output: ህ
PHP:
$char = "\x{1205}";
echo $char; // Output: ህ
Ruby:
char = "\u{1205}"
puts char # Output: ህ
Rust:
let c = '\u{1205}';
println!("{}", c); // Output: ህ
Go:
char := '\u1205'
fmt.Printf("%c\n", char) // Output: ህ
CSS:
/* CSS content property */
.element::before {
content: "\001205"; /* 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=%E1%88%85
MD5:
0cad281159bbf0e39eb8550fa8763b1a
SHA1:
40d0029c186aadf21319d360f34588cabe7bde8f
Base64:
4YiF