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