C:
char c = '\u130F';
printf("%c\n", c); // Output: ጏ
JavaScript:
const char = '\u130F';
console.log(char); // Output: ጏ
Java:
char c = '\u130F';
System.out.println(c); // Output: ጏ
JSON:
{"text": "\u130F"} // Value: ጏ
Python:
char = '\u130F'
print(char) # Output: ጏ
Perl:
my $char = "\x{130F}";
print $char; # Output: ጏ
PHP:
$char = "\x{130F}";
echo $char; // Output: ጏ
Ruby:
char = "\u{130F}"
puts char # Output: ጏ
Rust:
let c = '\u{130F}';
println!("{}", c); // Output: ጏ
Go:
char := '\u130F'
fmt.Printf("%c\n", char) // Output: ጏ
CSS:
/* CSS content property */
.element::before {
content: "\00130F"; /* 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%8F
MD5:
8d138d380d0296bf33d75627da3b74b9
SHA1:
551b98348246305d25eb9b3173cac8565845faa7
Base64:
4YyP