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