C:
char c = '\u2968';
printf("%c\n", c); // Output: ⥨
JavaScript:
const char = '\u2968';
console.log(char); // Output: ⥨
Java:
char c = '\u2968';
System.out.println(c); // Output: ⥨
JSON:
{"text": "\u2968"} // Value: ⥨
Python:
char = '\u2968'
print(char) # Output: ⥨
Perl:
my $char = "\x{2968}";
print $char; # Output: ⥨
PHP:
$char = "\x{2968}";
echo $char; // Output: ⥨
Ruby:
char = "\u{2968}"
puts char # Output: ⥨
Rust:
let c = '\u{2968}';
println!("{}", c); // Output: ⥨
Go:
char := '\u2968'
fmt.Printf("%c\n", char) // Output: ⥨
CSS:
/* CSS content property */
.element::before {
content: "\002968"; /* 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%A5%A8
MD5:
9d123de1fa09bd0fd5eb3083388afab4
SHA1:
6929c85596645fad4aabacd9a909c25c6764c204
Base64:
4qWo