C:
char c = '\u2989';
printf("%c\n", c); // Output: ⦉
JavaScript:
const char = '\u2989';
console.log(char); // Output: ⦉
Java:
char c = '\u2989';
System.out.println(c); // Output: ⦉
JSON:
{"text": "\u2989"} // Value: ⦉
Python:
char = '\u2989'
print(char) # Output: ⦉
Perl:
my $char = "\x{2989}";
print $char; # Output: ⦉
PHP:
$char = "\x{2989}";
echo $char; // Output: ⦉
Ruby:
char = "\u{2989}"
puts char # Output: ⦉
Rust:
let c = '\u{2989}';
println!("{}", c); // Output: ⦉
Go:
char := '\u2989'
fmt.Printf("%c\n", char) // Output: ⦉
CSS:
/* CSS content property */
.element::before {
content: "\002989"; /* 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%A6%89
MD5:
f6b01dd638488a9a3d3a40e83da30187
SHA1:
cdac67c22133d75e8984d2a873ca9d9cf46d39e0
Base64:
4qaJ