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