C:
char c = '\u1369';
printf("%c\n", c); // Output: ፩
JavaScript:
const char = '\u1369';
console.log(char); // Output: ፩
Java:
char c = '\u1369';
System.out.println(c); // Output: ፩
JSON:
{"text": "\u1369"} // Value: ፩
Python:
char = '\u1369'
print(char) # Output: ፩
Perl:
my $char = "\x{1369}";
print $char; # Output: ፩
PHP:
$char = "\x{1369}";
echo $char; // Output: ፩
Ruby:
char = "\u{1369}"
puts char # Output: ፩
Rust:
let c = '\u{1369}';
println!("{}", c); // Output: ፩
Go:
char := '\u1369'
fmt.Printf("%c\n", char) // Output: ፩
CSS:
/* CSS content property */
.element::before {
content: "\001369"; /* 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%A9
MD5:
a62e006e1f504e79c18217f9f5b7744a
SHA1:
31430a61ffee1cf945f93475a8cf37607753a499
Base64:
4Y2p