C:
char c = '\u1340';
printf("%c\n", c); // Output: ፀ
JavaScript:
const char = '\u1340';
console.log(char); // Output: ፀ
Java:
char c = '\u1340';
System.out.println(c); // Output: ፀ
JSON:
{"text": "\u1340"} // Value: ፀ
Python:
char = '\u1340'
print(char) # Output: ፀ
Perl:
my $char = "\x{1340}";
print $char; # Output: ፀ
PHP:
$char = "\x{1340}";
echo $char; // Output: ፀ
Ruby:
char = "\u{1340}"
puts char # Output: ፀ
Rust:
let c = '\u{1340}';
println!("{}", c); // Output: ፀ
Go:
char := '\u1340'
fmt.Printf("%c\n", char) // Output: ፀ
CSS:
/* CSS content property */
.element::before {
content: "\001340"; /* 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%80
MD5:
f8727b8ae8911798d460356918b4ed39
SHA1:
b6f4cac54579777151d0934956837adf3efc4120
Base64:
4Y2A