C:
char c = '\u0582';
printf("%c\n", c); // Output: ւ
JavaScript:
const char = '\u0582';
console.log(char); // Output: ւ
Java:
char c = '\u0582';
System.out.println(c); // Output: ւ
JSON:
{"text": "\u0582"} // Value: ւ
Python:
char = '\u0582'
print(char) # Output: ւ
Perl:
my $char = "\x{0582}";
print $char; # Output: ւ
PHP:
$char = "\x{0582}";
echo $char; // Output: ւ
Ruby:
char = "\u{0582}"
puts char # Output: ւ
Rust:
let c = '\u{582}';
println!("{}", c); // Output: ւ
Go:
char := '\u0582'
fmt.Printf("%c\n", char) // Output: ւ
CSS:
/* CSS content property */
.element::before {
content: "\000582"; /* 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=%D6%82
MD5:
0a4d0ff7f4f247e67287846fff73177a
SHA1:
34aad79193f06e66c3e83656a3ea00563f11998c
Base64:
1oI=