C:
char c = '\u0426';
printf("%c\n", c); // Output: Ц
JavaScript:
const char = '\u0426';
console.log(char); // Output: Ц
Java:
char c = '\u0426';
System.out.println(c); // Output: Ц
JSON:
{"text": "\u0426"} // Value: Ц
Python:
char = '\u0426'
print(char) # Output: Ц
Perl:
my $char = "\x{0426}";
print $char; # Output: Ц
PHP:
$char = "\x{0426}";
echo $char; // Output: Ц
Ruby:
char = "\u{0426}"
puts char # Output: Ц
Rust:
let c = '\u{426}';
println!("{}", c); // Output: Ц
Go:
char := '\u0426'
fmt.Printf("%c\n", char) // Output: Ц
CSS:
/* CSS content property */
.element::before {
content: "\000426"; /* 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=%D0%A6
MD5:
f083e8965b19d169cd75b654cf26a0bf
SHA1:
c01ba44501410ca9769a332264e4dae334ae6eb8
Base64:
0KY=