C:
char c = '\u2A6B';
printf("%c\n", c); // Output: ⩫
JavaScript:
const char = '\u2A6B';
console.log(char); // Output: ⩫
Java:
char c = '\u2A6B';
System.out.println(c); // Output: ⩫
JSON:
{"text": "\u2A6B"} // Value: ⩫
Python:
char = '\u2A6B'
print(char) # Output: ⩫
Perl:
my $char = "\x{2A6B}";
print $char; # Output: ⩫
PHP:
$char = "\x{2A6B}";
echo $char; // Output: ⩫
Ruby:
char = "\u{2A6B}"
puts char # Output: ⩫
Rust:
let c = '\u{2A6B}';
println!("{}", c); // Output: ⩫
Go:
char := '\u2A6B'
fmt.Printf("%c\n", char) // Output: ⩫
CSS:
/* CSS content property */
.element::before {
content: "\002A6B"; /* 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%A9%AB
MD5:
c4d33605db319677a3e2471250b6558b
SHA1:
685b0c813835f3db2013f9ba26ef7a2136b5cf64
Base64:
4qmr