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