C:
char c = '\u13CC';
printf("%c\n", c); // Output: Ꮜ
JavaScript:
const char = '\u13CC';
console.log(char); // Output: Ꮜ
Java:
char c = '\u13CC';
System.out.println(c); // Output: Ꮜ
JSON:
{"text": "\u13CC"} // Value: Ꮜ
Python:
char = '\u13CC'
print(char) # Output: Ꮜ
Perl:
my $char = "\x{13CC}";
print $char; # Output: Ꮜ
PHP:
$char = "\x{13CC}";
echo $char; // Output: Ꮜ
Ruby:
char = "\u{13CC}"
puts char # Output: Ꮜ
Rust:
let c = '\u{13CC}';
println!("{}", c); // Output: Ꮜ
Go:
char := '\u13CC'
fmt.Printf("%c\n", char) // Output: Ꮜ
CSS:
/* CSS content property */
.element::before {
content: "\0013CC"; /* 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%8F%8C
MD5:
3b560ff89492ebfc73cfe8d73c1dd635
SHA1:
1028abc0ed4879c010eeeb6f7986f9892207f334
Base64:
4Y+M