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