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