C:
char c = '\u2405';
printf("%c\n", c); // Output: ␅
JavaScript:
const char = '\u2405';
console.log(char); // Output: ␅
Java:
char c = '\u2405';
System.out.println(c); // Output: ␅
JSON:
{"text": "\u2405"} // Value: ␅
Python:
char = '\u2405'
print(char) # Output: ␅
Perl:
my $char = "\x{2405}";
print $char; # Output: ␅
PHP:
$char = "\x{2405}";
echo $char; // Output: ␅
Ruby:
char = "\u{2405}"
puts char # Output: ␅
Rust:
let c = '\u{2405}';
println!("{}", c); // Output: ␅
Go:
char := '\u2405'
fmt.Printf("%c\n", char) // Output: ␅
CSS:
/* CSS content property */
.element::before {
content: "\002405"; /* 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%90%85
MD5:
74cc416eb36a1bbf06a873d8737c2bb6
SHA1:
61b53afb7f28f54b7acfe28deb503238b06efe47
Base64:
4pCF