C:
char c = '\u1358';
printf("%c\n", c); // Output: ፘ
JavaScript:
const char = '\u1358';
console.log(char); // Output: ፘ
Java:
char c = '\u1358';
System.out.println(c); // Output: ፘ
JSON:
{"text": "\u1358"} // Value: ፘ
Python:
char = '\u1358'
print(char) # Output: ፘ
Perl:
my $char = "\x{1358}";
print $char; # Output: ፘ
PHP:
$char = "\x{1358}";
echo $char; // Output: ፘ
Ruby:
char = "\u{1358}"
puts char # Output: ፘ
Rust:
let c = '\u{1358}';
println!("{}", c); // Output: ፘ
Go:
char := '\u1358'
fmt.Printf("%c\n", char) // Output: ፘ
CSS:
/* CSS content property */
.element::before {
content: "\001358"; /* 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%98
MD5:
7474db9b6f409a48d99473730636335d
SHA1:
1a3efed07a5358d6b1692a5b25d036080288c302
Base64:
4Y2Y