C:
char c = '\u0446';
printf("%c\n", c); // Output: ц
JavaScript:
const char = '\u0446';
console.log(char); // Output: ц
Java:
char c = '\u0446';
System.out.println(c); // Output: ц
JSON:
{"text": "\u0446"} // Value: ц
Python:
char = '\u0446'
print(char) # Output: ц
Perl:
my $char = "\x{0446}";
print $char; # Output: ц
PHP:
$char = "\x{0446}";
echo $char; // Output: ц
Ruby:
char = "\u{0446}"
puts char # Output: ц
Rust:
let c = '\u{446}';
println!("{}", c); // Output: ц
Go:
char := '\u0446'
fmt.Printf("%c\n", char) // Output: ц
CSS:
/* CSS content property */
.element::before {
content: "\000446"; /* 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=%D1%86
MD5:
4d6c959e8236ed67caed27f877d39a68
SHA1:
230b5877294e97263f4540c32b5d1a54fc1c1659
Base64:
0YY=