C:
char c = '\u2954';
printf("%c\n", c); // Output: ⥔
JavaScript:
const char = '\u2954';
console.log(char); // Output: ⥔
Java:
char c = '\u2954';
System.out.println(c); // Output: ⥔
JSON:
{"text": "\u2954"} // Value: ⥔
Python:
char = '\u2954'
print(char) # Output: ⥔
Perl:
my $char = "\x{2954}";
print $char; # Output: ⥔
PHP:
$char = "\x{2954}";
echo $char; // Output: ⥔
Ruby:
char = "\u{2954}"
puts char # Output: ⥔
Rust:
let c = '\u{2954}';
println!("{}", c); // Output: ⥔
Go:
char := '\u2954'
fmt.Printf("%c\n", char) // Output: ⥔
CSS:
/* CSS content property */
.element::before {
content: "\002954"; /* 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%94
MD5:
64c5d658aaabe1d0d91db99ef7a65663
SHA1:
6118d3781c087a76bde8805b0be1f50acd09ed57
Base64:
4qWU