C:
char c = '\u04CF';
printf("%c\n", c); // Output: ӏ
JavaScript:
const char = '\u04CF';
console.log(char); // Output: ӏ
Java:
char c = '\u04CF';
System.out.println(c); // Output: ӏ
JSON:
{"text": "\u04CF"} // Value: ӏ
Python:
char = '\u04CF'
print(char) # Output: ӏ
Perl:
my $char = "\x{04CF}";
print $char; # Output: ӏ
PHP:
$char = "\x{04CF}";
echo $char; // Output: ӏ
Ruby:
char = "\u{04CF}"
puts char # Output: ӏ
Rust:
let c = '\u{4CF}';
println!("{}", c); // Output: ӏ
Go:
char := '\u04CF'
fmt.Printf("%c\n", char) // Output: ӏ
CSS:
/* CSS content property */
.element::before {
content: "\0004CF"; /* 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=%D3%8F
MD5:
7213ed6bccc76ceafa0058b961f43620
SHA1:
63c69034467e0b022efec8debd5515460aab48be
Base64:
048=