C:
char c = '\uA74F';
printf("%c\n", c); // Output: ꝏ
JavaScript:
const char = '\uA74F';
console.log(char); // Output: ꝏ
Java:
char c = '\uA74F';
System.out.println(c); // Output: ꝏ
JSON:
{"text": "\uA74F"} // Value: ꝏ
Python:
char = '\uA74F'
print(char) # Output: ꝏ
Perl:
my $char = "\x{A74F}";
print $char; # Output: ꝏ
PHP:
$char = "\x{A74F}";
echo $char; // Output: ꝏ
Ruby:
char = "\u{A74F}"
puts char # Output: ꝏ
Rust:
let c = '\u{A74F}';
println!("{}", c); // Output: ꝏ
Go:
char := '\uA74F'
fmt.Printf("%c\n", char) // Output: ꝏ
CSS:
/* CSS content property */
.element::before {
content: "\00A74F"; /* 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%9D%8F
MD5:
4ca8dfb67f0ac804e7a8ff05fb34a167
SHA1:
86cc6aead74511e003571a096f7001e4a695dbc5
Base64:
6p2P