C:
char c = '\u134D';
printf("%c\n", c); // Output: ፍ
JavaScript:
const char = '\u134D';
console.log(char); // Output: ፍ
Java:
char c = '\u134D';
System.out.println(c); // Output: ፍ
JSON:
{"text": "\u134D"} // Value: ፍ
Python:
char = '\u134D'
print(char) # Output: ፍ
Perl:
my $char = "\x{134D}";
print $char; # Output: ፍ
PHP:
$char = "\x{134D}";
echo $char; // Output: ፍ
Ruby:
char = "\u{134D}"
puts char # Output: ፍ
Rust:
let c = '\u{134D}';
println!("{}", c); // Output: ፍ
Go:
char := '\u134D'
fmt.Printf("%c\n", char) // Output: ፍ
CSS:
/* CSS content property */
.element::before {
content: "\00134D"; /* 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%8D
MD5:
2d27d5f71080dc74f09d4bdd7783331e
SHA1:
abbe36bd2658b9657ffc4c39afeeb974b3cb33f3
Base64:
4Y2N