C:
char c = '\u300A';
printf("%c\n", c); // Output: 《
JavaScript:
const char = '\u300A';
console.log(char); // Output: 《
Java:
char c = '\u300A';
System.out.println(c); // Output: 《
JSON:
{"text": "\u300A"} // Value: 《
Python:
char = '\u300A'
print(char) # Output: 《
Perl:
my $char = "\x{300A}";
print $char; # Output: 《
PHP:
$char = "\x{300A}";
echo $char; // Output: 《
Ruby:
char = "\u{300A}"
puts char # Output: 《
Rust:
let c = '\u{300A}';
println!("{}", c); // Output: 《
Go:
char := '\u300A'
fmt.Printf("%c\n", char) // Output: 《
CSS:
/* CSS content property */
.element::before {
content: "\00300A"; /* 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%8A
MD5:
c1268e091d4d22300d7c98c3ef384aef
SHA1:
d0569eb8654db05cbe160e3c6957d47fe41037ff
Base64:
44CK