C:
char c = '\u2970';
printf("%c\n", c); // Output: ⥰
JavaScript:
const char = '\u2970';
console.log(char); // Output: ⥰
Java:
char c = '\u2970';
System.out.println(c); // Output: ⥰
JSON:
{"text": "\u2970"} // Value: ⥰
Python:
char = '\u2970'
print(char) # Output: ⥰
Perl:
my $char = "\x{2970}";
print $char; # Output: ⥰
PHP:
$char = "\x{2970}";
echo $char; // Output: ⥰
Ruby:
char = "\u{2970}"
puts char # Output: ⥰
Rust:
let c = '\u{2970}';
println!("{}", c); // Output: ⥰
Go:
char := '\u2970'
fmt.Printf("%c\n", char) // Output: ⥰
CSS:
/* CSS content property */
.element::before {
content: "\002970"; /* 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%B0
MD5:
065c9b87ad99cf36b0a8ceed336d952b
SHA1:
398519b6526c263d840fab319e220b1db316b7c4
Base64:
4qWw