C:
char c = '\u1325';
printf("%c\n", c); // Output: ጥ
JavaScript:
const char = '\u1325';
console.log(char); // Output: ጥ
Java:
char c = '\u1325';
System.out.println(c); // Output: ጥ
JSON:
{"text": "\u1325"} // Value: ጥ
Python:
char = '\u1325'
print(char) # Output: ጥ
Perl:
my $char = "\x{1325}";
print $char; # Output: ጥ
PHP:
$char = "\x{1325}";
echo $char; // Output: ጥ
Ruby:
char = "\u{1325}"
puts char # Output: ጥ
Rust:
let c = '\u{1325}';
println!("{}", c); // Output: ጥ
Go:
char := '\u1325'
fmt.Printf("%c\n", char) // Output: ጥ
CSS:
/* CSS content property */
.element::before {
content: "\001325"; /* 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%A5
MD5:
f5320d07a309a83cd85249f8afccaa56
SHA1:
4900b181e7ae67795ca7e7eb262502c55ba8d732
Base64:
4Yyl