C:
char c = '\u005B';
printf("%c\n", c); // Output: [
JavaScript:
const char = '\u005B';
console.log(char); // Output: [
Java:
char c = '\u005B';
System.out.println(c); // Output: [
JSON:
{"text": "\u005B"} // Value: [
Python:
char = '\u005B'
print(char) # Output: [
Perl:
my $char = "\x{005B}";
print $char; # Output: [
PHP:
$char = "\x{005B}";
echo $char; // Output: [
Ruby:
char = "\u{005B}"
puts char # Output: [
Rust:
let c = '\u{5B}';
println!("{}", c); // Output: [
Go:
char := '\u005B'
fmt.Printf("%c\n", char) // Output: [
CSS:
/* CSS content property */
.element::before {
content: "\00005B"; /* 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=%5B
MD5:
815417267f76f6f460a4a61f9db75fdb
SHA1:
1e5c2f367f02e47a8c160cda1cd9d91decbac441
Base64:
Ww==