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