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