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