C:
char c = '\u22BE';
printf("%c\n", c); // Output: ⊾
JavaScript:
const char = '\u22BE';
console.log(char); // Output: ⊾
Java:
char c = '\u22BE';
System.out.println(c); // Output: ⊾
JSON:
{"text": "\u22BE"} // Value: ⊾
Python:
char = '\u22BE'
print(char) # Output: ⊾
Perl:
my $char = "\x{22BE}";
print $char; # Output: ⊾
PHP:
$char = "\x{22BE}";
echo $char; // Output: ⊾
Ruby:
char = "\u{22BE}"
puts char # Output: ⊾
Rust:
let c = '\u{22BE}';
println!("{}", c); // Output: ⊾
Go:
char := '\u22BE'
fmt.Printf("%c\n", char) // Output: ⊾
CSS:
/* CSS content property */
.element::before {
content: "\0022BE"; /* 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%8A%BE
MD5:
8962d5de1190b4ca150ac88013451ef5
SHA1:
4e6963fc0fd73a3a023d0858c9d69cf9897ad837
Base64:
4oq+