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