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