C:
char c = '\u1219';
printf("%c\n", c); // Output: ሙ
JavaScript:
const char = '\u1219';
console.log(char); // Output: ሙ
Java:
char c = '\u1219';
System.out.println(c); // Output: ሙ
JSON:
{"text": "\u1219"} // Value: ሙ
Python:
char = '\u1219'
print(char) # Output: ሙ
Perl:
my $char = "\x{1219}";
print $char; # Output: ሙ
PHP:
$char = "\x{1219}";
echo $char; // Output: ሙ
Ruby:
char = "\u{1219}"
puts char # Output: ሙ
Rust:
let c = '\u{1219}';
println!("{}", c); // Output: ሙ
Go:
char := '\u1219'
fmt.Printf("%c\n", char) // Output: ሙ
CSS:
/* CSS content property */
.element::before {
content: "\001219"; /* 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%99
MD5:
442b0651302f4acce17920d622ef0df2
SHA1:
b79b3a410abe9de0e690bd44e54e473281e8e9f9
Base64:
4YiZ