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