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