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