C:
char c = '\u1C33';
printf("%c\n", c); // Output: ᰳ
JavaScript:
const char = '\u1C33';
console.log(char); // Output: ᰳ
Java:
char c = '\u1C33';
System.out.println(c); // Output: ᰳ
JSON:
{"text": "\u1C33"} // Value: ᰳ
Python:
char = '\u1C33'
print(char) # Output: ᰳ
Perl:
my $char = "\x{1C33}";
print $char; # Output: ᰳ
PHP:
$char = "\x{1C33}";
echo $char; // Output: ᰳ
Ruby:
char = "\u{1C33}"
puts char # Output: ᰳ
Rust:
let c = '\u{1C33}';
println!("{}", c); // Output: ᰳ
Go:
char := '\u1C33'
fmt.Printf("%c\n", char) // Output: ᰳ
CSS:
/* CSS content property */
.element::before {
content: "\001C33"; /* 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%B3
MD5:
5d5285fbb54ad240bd15fe033bed0723
SHA1:
351eff36d56e44dc6d9cdfedb03462d98a21611c
Base64:
4bCz