C:
char c = '\u1228';
printf("%c\n", c); // Output: ረ
JavaScript:
const char = '\u1228';
console.log(char); // Output: ረ
Java:
char c = '\u1228';
System.out.println(c); // Output: ረ
JSON:
{"text": "\u1228"} // Value: ረ
Python:
char = '\u1228'
print(char) # Output: ረ
Perl:
my $char = "\x{1228}";
print $char; # Output: ረ
PHP:
$char = "\x{1228}";
echo $char; // Output: ረ
Ruby:
char = "\u{1228}"
puts char # Output: ረ
Rust:
let c = '\u{1228}';
println!("{}", c); // Output: ረ
Go:
char := '\u1228'
fmt.Printf("%c\n", char) // Output: ረ
CSS:
/* CSS content property */
.element::before {
content: "\001228"; /* 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%A8
MD5:
a66639fa10d7475d0fdb13dbcd84ad23
SHA1:
c5edf6557ccba872787830049f522e165fa88ce2
Base64:
4Yio