C:
char c = '\u1D1C';
printf("%c\n", c); // Output: ᴜ
JavaScript:
const char = '\u1D1C';
console.log(char); // Output: ᴜ
Java:
char c = '\u1D1C';
System.out.println(c); // Output: ᴜ
JSON:
{"text": "\u1D1C"} // Value: ᴜ
Python:
char = '\u1D1C'
print(char) # Output: ᴜ
Perl:
my $char = "\x{1D1C}";
print $char; # Output: ᴜ
PHP:
$char = "\x{1D1C}";
echo $char; // Output: ᴜ
Ruby:
char = "\u{1D1C}"
puts char # Output: ᴜ
Rust:
let c = '\u{1D1C}';
println!("{}", c); // Output: ᴜ
Go:
char := '\u1D1C'
fmt.Printf("%c\n", char) // Output: ᴜ
CSS:
/* CSS content property */
.element::before {
content: "\001D1C"; /* 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%B4%9C
MD5:
334238dffae8346ec5c7919b580b31b4
SHA1:
2b5bd72eeff946a171b19c3cdfbebebd70dce4a3
Base64:
4bSc