C:
char c = '\u18DF';
printf("%c\n", c); // Output: ᣟ
JavaScript:
const char = '\u18DF';
console.log(char); // Output: ᣟ
Java:
char c = '\u18DF';
System.out.println(c); // Output: ᣟ
JSON:
{"text": "\u18DF"} // Value: ᣟ
Python:
char = '\u18DF'
print(char) # Output: ᣟ
Perl:
my $char = "\x{18DF}";
print $char; # Output: ᣟ
PHP:
$char = "\x{18DF}";
echo $char; // Output: ᣟ
Ruby:
char = "\u{18DF}"
puts char # Output: ᣟ
Rust:
let c = '\u{18DF}';
println!("{}", c); // Output: ᣟ
Go:
char := '\u18DF'
fmt.Printf("%c\n", char) // Output: ᣟ
CSS:
/* CSS content property */
.element::before {
content: "\0018DF"; /* 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%A3%9F
MD5:
8a6e9961f246511def96c48c750ca2d9
SHA1:
48244af2d4ce717f00c6e3c85b07a702c710f3f8
Base64:
4aOf