C:
char c = '\u1341';
printf("%c\n", c); // Output: ፁ
JavaScript:
const char = '\u1341';
console.log(char); // Output: ፁ
Java:
char c = '\u1341';
System.out.println(c); // Output: ፁ
JSON:
{"text": "\u1341"} // Value: ፁ
Python:
char = '\u1341'
print(char) # Output: ፁ
Perl:
my $char = "\x{1341}";
print $char; # Output: ፁ
PHP:
$char = "\x{1341}";
echo $char; // Output: ፁ
Ruby:
char = "\u{1341}"
puts char # Output: ፁ
Rust:
let c = '\u{1341}';
println!("{}", c); // Output: ፁ
Go:
char := '\u1341'
fmt.Printf("%c\n", char) // Output: ፁ
CSS:
/* CSS content property */
.element::before {
content: "\001341"; /* 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%8D%81
MD5:
87d82b517e958cddf04e1d45aba5b49b
SHA1:
20438db381df23d5a579aa51f8cee2f06b542b5b
Base64:
4Y2B