C:
char c = '\u1BDF';
printf("%c\n", c); // Output: ᯟ
JavaScript:
const char = '\u1BDF';
console.log(char); // Output: ᯟ
Java:
char c = '\u1BDF';
System.out.println(c); // Output: ᯟ
JSON:
{"text": "\u1BDF"} // Value: ᯟ
Python:
char = '\u1BDF'
print(char) # Output: ᯟ
Perl:
my $char = "\x{1BDF}";
print $char; # Output: ᯟ
PHP:
$char = "\x{1BDF}";
echo $char; // Output: ᯟ
Ruby:
char = "\u{1BDF}"
puts char # Output: ᯟ
Rust:
let c = '\u{1BDF}';
println!("{}", c); // Output: ᯟ
Go:
char := '\u1BDF'
fmt.Printf("%c\n", char) // Output: ᯟ
CSS:
/* CSS content property */
.element::before {
content: "\001BDF"; /* 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%AF%9F
MD5:
341f655c03b6e0a4aa11ad88d38647c5
SHA1:
42abbf624fb703d425693ef8370de69d9707eb38
Base64:
4a+f