C:
char c = '\u04FB';
printf("%c\n", c); // Output: ӻ
JavaScript:
const char = '\u04FB';
console.log(char); // Output: ӻ
Java:
char c = '\u04FB';
System.out.println(c); // Output: ӻ
JSON:
{"text": "\u04FB"} // Value: ӻ
Python:
char = '\u04FB'
print(char) # Output: ӻ
Perl:
my $char = "\x{04FB}";
print $char; # Output: ӻ
PHP:
$char = "\x{04FB}";
echo $char; // Output: ӻ
Ruby:
char = "\u{04FB}"
puts char # Output: ӻ
Rust:
let c = '\u{4FB}';
println!("{}", c); // Output: ӻ
Go:
char := '\u04FB'
fmt.Printf("%c\n", char) // Output: ӻ
CSS:
/* CSS content property */
.element::before {
content: "\0004FB"; /* 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%BB
MD5:
5e1f967bfeeceb2fb7e4afbbee851a8e
SHA1:
83aba41306eb5eb5703beaad494d9ee5d3a9226c
Base64:
07s=