C:
char c = '\u1354';
printf("%c\n", c); // Output: ፔ
JavaScript:
const char = '\u1354';
console.log(char); // Output: ፔ
Java:
char c = '\u1354';
System.out.println(c); // Output: ፔ
JSON:
{"text": "\u1354"} // Value: ፔ
Python:
char = '\u1354'
print(char) # Output: ፔ
Perl:
my $char = "\x{1354}";
print $char; # Output: ፔ
PHP:
$char = "\x{1354}";
echo $char; // Output: ፔ
Ruby:
char = "\u{1354}"
puts char # Output: ፔ
Rust:
let c = '\u{1354}';
println!("{}", c); // Output: ፔ
Go:
char := '\u1354'
fmt.Printf("%c\n", char) // Output: ፔ
CSS:
/* CSS content property */
.element::before {
content: "\001354"; /* 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%94
MD5:
483c09abe45ad04fd56318d82fa5d23e
SHA1:
4ceec2676367ddb605b124a2ccd1760be1f77440
Base64:
4Y2U