C:
char c = '\u1352';
printf("%c\n", c); // Output: ፒ
JavaScript:
const char = '\u1352';
console.log(char); // Output: ፒ
Java:
char c = '\u1352';
System.out.println(c); // Output: ፒ
JSON:
{"text": "\u1352"} // Value: ፒ
Python:
char = '\u1352'
print(char) # Output: ፒ
Perl:
my $char = "\x{1352}";
print $char; # Output: ፒ
PHP:
$char = "\x{1352}";
echo $char; // Output: ፒ
Ruby:
char = "\u{1352}"
puts char # Output: ፒ
Rust:
let c = '\u{1352}';
println!("{}", c); // Output: ፒ
Go:
char := '\u1352'
fmt.Printf("%c\n", char) // Output: ፒ
CSS:
/* CSS content property */
.element::before {
content: "\001352"; /* 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%92
MD5:
9d7fa5c8e2ef5852995d23ba5b498b03
SHA1:
ddd93641e76917ef3ff4a5183215ac52792391f5
Base64:
4Y2S