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