C:
char c = '\u1366';
printf("%c\n", c); // Output: ፦
JavaScript:
const char = '\u1366';
console.log(char); // Output: ፦
Java:
char c = '\u1366';
System.out.println(c); // Output: ፦
JSON:
{"text": "\u1366"} // Value: ፦
Python:
char = '\u1366'
print(char) # Output: ፦
Perl:
my $char = "\x{1366}";
print $char; # Output: ፦
PHP:
$char = "\x{1366}";
echo $char; // Output: ፦
Ruby:
char = "\u{1366}"
puts char # Output: ፦
Rust:
let c = '\u{1366}';
println!("{}", c); // Output: ፦
Go:
char := '\u1366'
fmt.Printf("%c\n", char) // Output: ፦
CSS:
/* CSS content property */
.element::before {
content: "\001366"; /* 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%A6
MD5:
23390a9097323aa054e626834170a1c8
SHA1:
185ef3c87b3fb3c31761cb3360abfed58a6e175c
Base64:
4Y2m