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