C:
char c = '\u3008';
printf("%c\n", c); // Output: 〈
JavaScript:
const char = '\u3008';
console.log(char); // Output: 〈
Java:
char c = '\u3008';
System.out.println(c); // Output: 〈
JSON:
{"text": "\u3008"} // Value: 〈
Python:
char = '\u3008'
print(char) # Output: 〈
Perl:
my $char = "\x{3008}";
print $char; # Output: 〈
PHP:
$char = "\x{3008}";
echo $char; // Output: 〈
Ruby:
char = "\u{3008}"
puts char # Output: 〈
Rust:
let c = '\u{3008}';
println!("{}", c); // Output: 〈
Go:
char := '\u3008'
fmt.Printf("%c\n", char) // Output: 〈
CSS:
/* CSS content property */
.element::before {
content: "\003008"; /* 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=%E3%80%88
MD5:
568799bee01216c03ccfe51aca1cd5d9
SHA1:
9fb248dfd4772d63103e184fcfde2f029262e6b1
Base64:
44CI