C:
char c = '\u1C1F';
printf("%c\n", c); // Output: ᰟ
JavaScript:
const char = '\u1C1F';
console.log(char); // Output: ᰟ
Java:
char c = '\u1C1F';
System.out.println(c); // Output: ᰟ
JSON:
{"text": "\u1C1F"} // Value: ᰟ
Python:
char = '\u1C1F'
print(char) # Output: ᰟ
Perl:
my $char = "\x{1C1F}";
print $char; # Output: ᰟ
PHP:
$char = "\x{1C1F}";
echo $char; // Output: ᰟ
Ruby:
char = "\u{1C1F}"
puts char # Output: ᰟ
Rust:
let c = '\u{1C1F}';
println!("{}", c); // Output: ᰟ
Go:
char := '\u1C1F'
fmt.Printf("%c\n", char) // Output: ᰟ
CSS:
/* CSS content property */
.element::before {
content: "\001C1F"; /* 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%B0%9F
MD5:
32ed37d893f0f636084f346b0be30a09
SHA1:
052f759dd1c9b9ac7720f5823bd287c9d22d8fda
Base64:
4bCf