C:
char c = '\uA260';
printf("%c\n", c); // Output: ꉠ
JavaScript:
const char = '\uA260';
console.log(char); // Output: ꉠ
Java:
char c = '\uA260';
System.out.println(c); // Output: ꉠ
JSON:
{"text": "\uA260"} // Value: ꉠ
Python:
char = '\uA260'
print(char) # Output: ꉠ
Perl:
my $char = "\x{A260}";
print $char; # Output: ꉠ
PHP:
$char = "\x{A260}";
echo $char; // Output: ꉠ
Ruby:
char = "\u{A260}"
puts char # Output: ꉠ
Rust:
let c = '\u{A260}';
println!("{}", c); // Output: ꉠ
Go:
char := '\uA260'
fmt.Printf("%c\n", char) // Output: ꉠ
CSS:
/* CSS content property */
.element::before {
content: "\00A260"; /* 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=%EA%89%A0
MD5:
3dd247fc1531971cf6154320442e61bf
SHA1:
bee8a2ce0b1ee3cf46dcdedbc9e4025b9d817307
Base64:
6omg