C:
char c = '\u105D';
printf("%c\n", c); // Output: ၝ
JavaScript:
const char = '\u105D';
console.log(char); // Output: ၝ
Java:
char c = '\u105D';
System.out.println(c); // Output: ၝ
JSON:
{"text": "\u105D"} // Value: ၝ
Python:
char = '\u105D'
print(char) # Output: ၝ
Perl:
my $char = "\x{105D}";
print $char; # Output: ၝ
PHP:
$char = "\x{105D}";
echo $char; // Output: ၝ
Ruby:
char = "\u{105D}"
puts char # Output: ၝ
Rust:
let c = '\u{105D}';
println!("{}", c); // Output: ၝ
Go:
char := '\u105D'
fmt.Printf("%c\n", char) // Output: ၝ
CSS:
/* CSS content property */
.element::before {
content: "\00105D"; /* 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%81%9D
MD5:
f1fb417b17386f8141ee85d1f6f70a7d
SHA1:
0adf0057f65db4c0c9c3640f36ef298b706bee76
Base64:
4YGd