C:
char c = '\u1C2F';
printf("%c\n", c); // Output: ᰯ
JavaScript:
const char = '\u1C2F';
console.log(char); // Output: ᰯ
Java:
char c = '\u1C2F';
System.out.println(c); // Output: ᰯ
JSON:
{"text": "\u1C2F"} // Value: ᰯ
Python:
char = '\u1C2F'
print(char) # Output: ᰯ
Perl:
my $char = "\x{1C2F}";
print $char; # Output: ᰯ
PHP:
$char = "\x{1C2F}";
echo $char; // Output: ᰯ
Ruby:
char = "\u{1C2F}"
puts char # Output: ᰯ
Rust:
let c = '\u{1C2F}';
println!("{}", c); // Output: ᰯ
Go:
char := '\u1C2F'
fmt.Printf("%c\n", char) // Output: ᰯ
CSS:
/* CSS content property */
.element::before {
content: "\001C2F"; /* 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%AF
MD5:
982f9e27fec8858d6c5963a0a47b64b1
SHA1:
84ad2bcfcc637592adfa1e62a2aa469bc58a0cbe
Base64:
4bCv