C:
char c = '\u2869';
printf("%c\n", c); // Output: ⡩
JavaScript:
const char = '\u2869';
console.log(char); // Output: ⡩
Java:
char c = '\u2869';
System.out.println(c); // Output: ⡩
JSON:
{"text": "\u2869"} // Value: ⡩
Python:
char = '\u2869'
print(char) # Output: ⡩
Perl:
my $char = "\x{2869}";
print $char; # Output: ⡩
PHP:
$char = "\x{2869}";
echo $char; // Output: ⡩
Ruby:
char = "\u{2869}"
puts char # Output: ⡩
Rust:
let c = '\u{2869}';
println!("{}", c); // Output: ⡩
Go:
char := '\u2869'
fmt.Printf("%c\n", char) // Output: ⡩
CSS:
/* CSS content property */
.element::before {
content: "\002869"; /* 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%A1%A9
MD5:
48f31a381395d81fde0a5b851db1ef4c
SHA1:
b4e5d76b0328e160803334f4e160920598085d78
Base64:
4qGp