C:
char c = '\uA68D';
printf("%c\n", c); // Output: ꚍ
JavaScript:
const char = '\uA68D';
console.log(char); // Output: ꚍ
Java:
char c = '\uA68D';
System.out.println(c); // Output: ꚍ
JSON:
{"text": "\uA68D"} // Value: ꚍ
Python:
char = '\uA68D'
print(char) # Output: ꚍ
Perl:
my $char = "\x{A68D}";
print $char; # Output: ꚍ
PHP:
$char = "\x{A68D}";
echo $char; // Output: ꚍ
Ruby:
char = "\u{A68D}"
puts char # Output: ꚍ
Rust:
let c = '\u{A68D}';
println!("{}", c); // Output: ꚍ
Go:
char := '\uA68D'
fmt.Printf("%c\n", char) // Output: ꚍ
CSS:
/* CSS content property */
.element::before {
content: "\00A68D"; /* 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%9A%8D
MD5:
5a73c794735bd1f6571753ef6c152e50
SHA1:
453e167b581ed26595f94457f3a1a0aa233ba375
Base64:
6pqN