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