C:
char c = '\u2DDE';
printf("%c\n", c); // Output: ⷞ
JavaScript:
const char = '\u2DDE';
console.log(char); // Output: ⷞ
Java:
char c = '\u2DDE';
System.out.println(c); // Output: ⷞ
JSON:
{"text": "\u2DDE"} // Value: ⷞ
Python:
char = '\u2DDE'
print(char) # Output: ⷞ
Perl:
my $char = "\x{2DDE}";
print $char; # Output: ⷞ
PHP:
$char = "\x{2DDE}";
echo $char; // Output: ⷞ
Ruby:
char = "\u{2DDE}"
puts char # Output: ⷞ
Rust:
let c = '\u{2DDE}';
println!("{}", c); // Output: ⷞ
Go:
char := '\u2DDE'
fmt.Printf("%c\n", char) // Output: ⷞ
CSS:
/* CSS content property */
.element::before {
content: "\002DDE"; /* 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%B7%9E
MD5:
cd35266c3ce45dc7f27f4911c1c5e53a
SHA1:
42d1e56fa9c18aecaa73658f776352ce5ff41d57
Base64:
4ree