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