C:
char c = '\u28A7';
printf("%c\n", c); // Output: ⢧
JavaScript:
const char = '\u28A7';
console.log(char); // Output: ⢧
Java:
char c = '\u28A7';
System.out.println(c); // Output: ⢧
JSON:
{"text": "\u28A7"} // Value: ⢧
Python:
char = '\u28A7'
print(char) # Output: ⢧
Perl:
my $char = "\x{28A7}";
print $char; # Output: ⢧
PHP:
$char = "\x{28A7}";
echo $char; // Output: ⢧
Ruby:
char = "\u{28A7}"
puts char # Output: ⢧
Rust:
let c = '\u{28A7}';
println!("{}", c); // Output: ⢧
Go:
char := '\u28A7'
fmt.Printf("%c\n", char) // Output: ⢧
CSS:
/* CSS content property */
.element::before {
content: "\0028A7"; /* 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%A2%A7
MD5:
6125c6ad231c15d1e6415927ea7fd882
SHA1:
58e2f0a1adec4b9885ba6707b06e2ed045788f93
Base64:
4qKn