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