C:
char c = '\u1220';
printf("%c\n", c); // Output: ሠ
JavaScript:
const char = '\u1220';
console.log(char); // Output: ሠ
Java:
char c = '\u1220';
System.out.println(c); // Output: ሠ
JSON:
{"text": "\u1220"} // Value: ሠ
Python:
char = '\u1220'
print(char) # Output: ሠ
Perl:
my $char = "\x{1220}";
print $char; # Output: ሠ
PHP:
$char = "\x{1220}";
echo $char; // Output: ሠ
Ruby:
char = "\u{1220}"
puts char # Output: ሠ
Rust:
let c = '\u{1220}';
println!("{}", c); // Output: ሠ
Go:
char := '\u1220'
fmt.Printf("%c\n", char) // Output: ሠ
CSS:
/* CSS content property */
.element::before {
content: "\001220"; /* 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%A0
MD5:
234084d70ce4b48ddeed432b1dfd0bc8
SHA1:
56975c0a965b21b1ca99726a7ba766839ae25f4d
Base64:
4Yig