C:
char c = '\u003B';
printf("%c\n", c); // Output: ;
JavaScript:
const char = '\u003B';
console.log(char); // Output: ;
Java:
char c = '\u003B';
System.out.println(c); // Output: ;
JSON:
{"text": "\u003B"} // Value: ;
Python:
char = '\u003B'
print(char) # Output: ;
Perl:
my $char = "\x{003B}";
print $char; # Output: ;
PHP:
$char = "\x{003B}";
echo $char; // Output: ;
Ruby:
char = "\u{003B}"
puts char # Output: ;
Rust:
let c = '\u{3B}';
println!("{}", c); // Output: ;
Go:
char := '\u003B'
fmt.Printf("%c\n", char) // Output: ;
CSS:
/* CSS content property */
.element::before {
content: "\00003B"; /* 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=%3B
MD5:
9eecb7db59d16c80417c72d1e1f4fbf1
SHA1:
2d14ab97cc3dc294c51c0d6814f4ea45f4b4e312
Base64:
Ow==