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