C:
char c = '\u2951';
printf("%c\n", c); // Output: ⥑
JavaScript:
const char = '\u2951';
console.log(char); // Output: ⥑
Java:
char c = '\u2951';
System.out.println(c); // Output: ⥑
JSON:
{"text": "\u2951"} // Value: ⥑
Python:
char = '\u2951'
print(char) # Output: ⥑
Perl:
my $char = "\x{2951}";
print $char; # Output: ⥑
PHP:
$char = "\x{2951}";
echo $char; // Output: ⥑
Ruby:
char = "\u{2951}"
puts char # Output: ⥑
Rust:
let c = '\u{2951}';
println!("{}", c); // Output: ⥑
Go:
char := '\u2951'
fmt.Printf("%c\n", char) // Output: ⥑
CSS:
/* CSS content property */
.element::before {
content: "\002951"; /* 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%91
MD5:
8d30cad19d78600296db04d4ebdbd2df
SHA1:
a4cae69f546d0812ce076be7d5d9667347da8304
Base64:
4qWR