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