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