C:
char c = '\u2032';
printf("%c\n", c); // Output: ′
JavaScript:
const char = '\u2032';
console.log(char); // Output: ′
Java:
char c = '\u2032';
System.out.println(c); // Output: ′
JSON:
{"text": "\u2032"} // Value: ′
Python:
char = '\u2032'
print(char) # Output: ′
Perl:
my $char = "\x{2032}";
print $char; # Output: ′
PHP:
$char = "\x{2032}";
echo $char; // Output: ′
Ruby:
char = "\u{2032}"
puts char # Output: ′
Rust:
let c = '\u{2032}';
println!("{}", c); // Output: ′
Go:
char := '\u2032'
fmt.Printf("%c\n", char) // Output: ′
CSS:
/* CSS content property */
.element::before {
content: "\002032"; /* 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=%E2%80%B2
MD5:
3d20fd907c1a2d010ef5039f914f3b4e
SHA1:
ca678a9a41ed698bf90bcd24102f887c7fda48e6
Base64:
4oCy