C:
char c = '\u1B10';
printf("%c\n", c); // Output: ᬐ
JavaScript:
const char = '\u1B10';
console.log(char); // Output: ᬐ
Java:
char c = '\u1B10';
System.out.println(c); // Output: ᬐ
JSON:
{"text": "\u1B10"} // Value: ᬐ
Python:
char = '\u1B10'
print(char) # Output: ᬐ
Perl:
my $char = "\x{1B10}";
print $char; # Output: ᬐ
PHP:
$char = "\x{1B10}";
echo $char; // Output: ᬐ
Ruby:
char = "\u{1B10}"
puts char # Output: ᬐ
Rust:
let c = '\u{1B10}';
println!("{}", c); // Output: ᬐ
Go:
char := '\u1B10'
fmt.Printf("%c\n", char) // Output: ᬐ
CSS:
/* CSS content property */
.element::before {
content: "\001B10"; /* 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%AC%90
MD5:
13f08c2bf75d94d30497edcc3169f529
SHA1:
b76be4b2ac78ed316d5f71e1d32114f1462a1d04
Base64:
4ayQ