C:
char c = '\u131C';
printf("%c\n", c); // Output: ጜ
JavaScript:
const char = '\u131C';
console.log(char); // Output: ጜ
Java:
char c = '\u131C';
System.out.println(c); // Output: ጜ
JSON:
{"text": "\u131C"} // Value: ጜ
Python:
char = '\u131C'
print(char) # Output: ጜ
Perl:
my $char = "\x{131C}";
print $char; # Output: ጜ
PHP:
$char = "\x{131C}";
echo $char; // Output: ጜ
Ruby:
char = "\u{131C}"
puts char # Output: ጜ
Rust:
let c = '\u{131C}';
println!("{}", c); // Output: ጜ
Go:
char := '\u131C'
fmt.Printf("%c\n", char) // Output: ጜ
CSS:
/* CSS content property */
.element::before {
content: "\00131C"; /* 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%8C%9C
MD5:
0a62e6cda7cf4cccc419014c08e58cd9
SHA1:
13c6747b2d8719ed410270007e7c0e4c54436b67
Base64:
4Yyc