C:
char c = '\u2A06';
printf("%c\n", c); // Output: ⨆
JavaScript:
const char = '\u2A06';
console.log(char); // Output: ⨆
Java:
char c = '\u2A06';
System.out.println(c); // Output: ⨆
JSON:
{"text": "\u2A06"} // Value: ⨆
Python:
char = '\u2A06'
print(char) # Output: ⨆
Perl:
my $char = "\x{2A06}";
print $char; # Output: ⨆
PHP:
$char = "\x{2A06}";
echo $char; // Output: ⨆
Ruby:
char = "\u{2A06}"
puts char # Output: ⨆
Rust:
let c = '\u{2A06}';
println!("{}", c); // Output: ⨆
Go:
char := '\u2A06'
fmt.Printf("%c\n", char) // Output: ⨆
CSS:
/* CSS content property */
.element::before {
content: "\002A06"; /* 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%A8%86
MD5:
59d303920fb511e4327024a1661e3f33
SHA1:
9b0fd3f5ce9298b5f9edaeb6e93ca0d147e23f38
Base64:
4qiG