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