C:
char c = '\u1346';
printf("%c\n", c); // Output: ፆ
JavaScript:
const char = '\u1346';
console.log(char); // Output: ፆ
Java:
char c = '\u1346';
System.out.println(c); // Output: ፆ
JSON:
{"text": "\u1346"} // Value: ፆ
Python:
char = '\u1346'
print(char) # Output: ፆ
Perl:
my $char = "\x{1346}";
print $char; # Output: ፆ
PHP:
$char = "\x{1346}";
echo $char; // Output: ፆ
Ruby:
char = "\u{1346}"
puts char # Output: ፆ
Rust:
let c = '\u{1346}';
println!("{}", c); // Output: ፆ
Go:
char := '\u1346'
fmt.Printf("%c\n", char) // Output: ፆ
CSS:
/* CSS content property */
.element::before {
content: "\001346"; /* 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%86
MD5:
8b261199a7efff875e5f3a9dc4e36649
SHA1:
96164c2a6da3a067ab7ebd2484e15ce66d015f49
Base64:
4Y2G