C:
char c = '\u1349';
printf("%c\n", c); // Output: ፉ
JavaScript:
const char = '\u1349';
console.log(char); // Output: ፉ
Java:
char c = '\u1349';
System.out.println(c); // Output: ፉ
JSON:
{"text": "\u1349"} // Value: ፉ
Python:
char = '\u1349'
print(char) # Output: ፉ
Perl:
my $char = "\x{1349}";
print $char; # Output: ፉ
PHP:
$char = "\x{1349}";
echo $char; // Output: ፉ
Ruby:
char = "\u{1349}"
puts char # Output: ፉ
Rust:
let c = '\u{1349}';
println!("{}", c); // Output: ፉ
Go:
char := '\u1349'
fmt.Printf("%c\n", char) // Output: ፉ
CSS:
/* CSS content property */
.element::before {
content: "\001349"; /* 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%89
MD5:
f90dd84d2a5d270b0777572626aa1490
SHA1:
d7d5cad6c2eb00d0b01498c9815dcd08023f7cfc
Base64:
4Y2J