C:
char c = '\u1364';
printf("%c\n", c); // Output: ፤
JavaScript:
const char = '\u1364';
console.log(char); // Output: ፤
Java:
char c = '\u1364';
System.out.println(c); // Output: ፤
JSON:
{"text": "\u1364"} // Value: ፤
Python:
char = '\u1364'
print(char) # Output: ፤
Perl:
my $char = "\x{1364}";
print $char; # Output: ፤
PHP:
$char = "\x{1364}";
echo $char; // Output: ፤
Ruby:
char = "\u{1364}"
puts char # Output: ፤
Rust:
let c = '\u{1364}';
println!("{}", c); // Output: ፤
Go:
char := '\u1364'
fmt.Printf("%c\n", char) // Output: ፤
CSS:
/* CSS content property */
.element::before {
content: "\001364"; /* 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%A4
MD5:
3cc7856247d584ae4a934e83e1ecaa7b
SHA1:
e834f462f53e7002609bae9efa4b7369168727d5
Base64:
4Y2k