C:
char c = '\u1356';
printf("%c\n", c); // Output: ፖ
JavaScript:
const char = '\u1356';
console.log(char); // Output: ፖ
Java:
char c = '\u1356';
System.out.println(c); // Output: ፖ
JSON:
{"text": "\u1356"} // Value: ፖ
Python:
char = '\u1356'
print(char) # Output: ፖ
Perl:
my $char = "\x{1356}";
print $char; # Output: ፖ
PHP:
$char = "\x{1356}";
echo $char; // Output: ፖ
Ruby:
char = "\u{1356}"
puts char # Output: ፖ
Rust:
let c = '\u{1356}';
println!("{}", c); // Output: ፖ
Go:
char := '\u1356'
fmt.Printf("%c\n", char) // Output: ፖ
CSS:
/* CSS content property */
.element::before {
content: "\001356"; /* 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%96
MD5:
9249ddd8dbadaeb4868556b56085d2a5
SHA1:
26b42dee1b45a228f2e32977f2570f6ea359582d
Base64:
4Y2W