C:
char c = '\u1C26';
printf("%c\n", c); // Output: ᰦ
JavaScript:
const char = '\u1C26';
console.log(char); // Output: ᰦ
Java:
char c = '\u1C26';
System.out.println(c); // Output: ᰦ
JSON:
{"text": "\u1C26"} // Value: ᰦ
Python:
char = '\u1C26'
print(char) # Output: ᰦ
Perl:
my $char = "\x{1C26}";
print $char; # Output: ᰦ
PHP:
$char = "\x{1C26}";
echo $char; // Output: ᰦ
Ruby:
char = "\u{1C26}"
puts char # Output: ᰦ
Rust:
let c = '\u{1C26}';
println!("{}", c); // Output: ᰦ
Go:
char := '\u1C26'
fmt.Printf("%c\n", char) // Output: ᰦ
CSS:
/* CSS content property */
.element::before {
content: "\001C26"; /* 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%B0%A6
MD5:
81ffeeece5575c0420ccbee5344d7971
SHA1:
6484e272fd153029be640e99b61f7fd2253d14e0
Base64:
4bCm