C:
char c = '\u7368';
printf("%c\n", c); // Output: 獨
JavaScript:
const char = '\u7368';
console.log(char); // Output: 獨
Java:
char c = '\u7368';
System.out.println(c); // Output: 獨
JSON:
{"text": "\u7368"} // Value: 獨
Python:
char = '\u7368'
print(char) # Output: 獨
Perl:
my $char = "\x{7368}";
print $char; # Output: 獨
PHP:
$char = "\x{7368}";
echo $char; // Output: 獨
Ruby:
char = "\u{7368}"
puts char # Output: 獨
Rust:
let c = '\u{7368}';
println!("{}", c); // Output: 獨
Go:
char := '\u7368'
fmt.Printf("%c\n", char) // Output: 獨
CSS:
/* CSS content property */
.element::before {
content: "\007368"; /* 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=%E7%8D%A8
MD5:
a3f3b78af888c3b27821d0e6adc9600f
SHA1:
6f143c8fe201b3604ae85c9006998256dcb0b116
Base64:
542o