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