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