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