C:
char c = '\u04AB';
printf("%c\n", c); // Output: ҫ
JavaScript:
const char = '\u04AB';
console.log(char); // Output: ҫ
Java:
char c = '\u04AB';
System.out.println(c); // Output: ҫ
JSON:
{"text": "\u04AB"} // Value: ҫ
Python:
char = '\u04AB'
print(char) # Output: ҫ
Perl:
my $char = "\x{04AB}";
print $char; # Output: ҫ
PHP:
$char = "\x{04AB}";
echo $char; // Output: ҫ
Ruby:
char = "\u{04AB}"
puts char # Output: ҫ
Rust:
let c = '\u{4AB}';
println!("{}", c); // Output: ҫ
Go:
char := '\u04AB'
fmt.Printf("%c\n", char) // Output: ҫ
CSS:
/* CSS content property */
.element::before {
content: "\0004AB"; /* 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=%D2%AB
MD5:
5484f11a636f706e5a68224d8108b9ce
SHA1:
f10e689beac861b82f8fe620822a037faf1f740d
Base64:
0qs=