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