C:
char c = '\u2030';
printf("%c\n", c); // Output: ‰
JavaScript:
const char = '\u2030';
console.log(char); // Output: ‰
Java:
char c = '\u2030';
System.out.println(c); // Output: ‰
JSON:
{"text": "\u2030"} // Value: ‰
Python:
char = '\u2030'
print(char) # Output: ‰
Perl:
my $char = "\x{2030}";
print $char; # Output: ‰
PHP:
$char = "\x{2030}";
echo $char; // Output: ‰
Ruby:
char = "\u{2030}"
puts char # Output: ‰
Rust:
let c = '\u{2030}';
println!("{}", c); // Output: ‰
Go:
char := '\u2030'
fmt.Printf("%c\n", char) // Output: ‰
CSS:
/* CSS content property */
.element::before {
content: "\002030"; /* 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%B0
MD5:
6fae917b4d8a360113e851ea6633e7fb
SHA1:
f19e5815f2965734c64f36b475462c3db6e6db2c
Base64:
4oCw