C:
char c = '\u29DF';
printf("%c\n", c); // Output: ⧟
JavaScript:
const char = '\u29DF';
console.log(char); // Output: ⧟
Java:
char c = '\u29DF';
System.out.println(c); // Output: ⧟
JSON:
{"text": "\u29DF"} // Value: ⧟
Python:
char = '\u29DF'
print(char) # Output: ⧟
Perl:
my $char = "\x{29DF}";
print $char; # Output: ⧟
PHP:
$char = "\x{29DF}";
echo $char; // Output: ⧟
Ruby:
char = "\u{29DF}"
puts char # Output: ⧟
Rust:
let c = '\u{29DF}';
println!("{}", c); // Output: ⧟
Go:
char := '\u29DF'
fmt.Printf("%c\n", char) // Output: ⧟
CSS:
/* CSS content property */
.element::before {
content: "\0029DF"; /* 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=%E2%A7%9F
MD5:
e2c61c7c9b275bcbd39bf0b037b5b498
SHA1:
feaff47f52e87807e53b8b2454210528b03466cc
Base64:
4qef