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