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