C:
char c = '\u1A0B';
printf("%c\n", c); // Output: ᨋ
JavaScript:
const char = '\u1A0B';
console.log(char); // Output: ᨋ
Java:
char c = '\u1A0B';
System.out.println(c); // Output: ᨋ
JSON:
{"text": "\u1A0B"} // Value: ᨋ
Python:
char = '\u1A0B'
print(char) # Output: ᨋ
Perl:
my $char = "\x{1A0B}";
print $char; # Output: ᨋ
PHP:
$char = "\x{1A0B}";
echo $char; // Output: ᨋ
Ruby:
char = "\u{1A0B}"
puts char # Output: ᨋ
Rust:
let c = '\u{1A0B}';
println!("{}", c); // Output: ᨋ
Go:
char := '\u1A0B'
fmt.Printf("%c\n", char) // Output: ᨋ
CSS:
/* CSS content property */
.element::before {
content: "\001A0B"; /* 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%A8%8B
MD5:
e5d8c69acfca47c8c24a0263c7f054da
SHA1:
e15b72b365246268e88827bf0e39400f9ede869e
Base64:
4aiL