C:
char c = '\u68D8';
printf("%c\n", c); // Output: 棘
JavaScript:
const char = '\u68D8';
console.log(char); // Output: 棘
Java:
char c = '\u68D8';
System.out.println(c); // Output: 棘
JSON:
{"text": "\u68D8"} // Value: 棘
Python:
char = '\u68D8'
print(char) # Output: 棘
Perl:
my $char = "\x{68D8}";
print $char; # Output: 棘
PHP:
$char = "\x{68D8}";
echo $char; // Output: 棘
Ruby:
char = "\u{68D8}"
puts char # Output: 棘
Rust:
let c = '\u{68D8}';
println!("{}", c); // Output: 棘
Go:
char := '\u68D8'
fmt.Printf("%c\n", char) // Output: 棘
CSS:
/* CSS content property */
.element::before {
content: "\0068D8"; /* 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=%E6%A3%98
MD5:
67f626815edfaf68d60d539f7ae48273
SHA1:
71bef2c13442446745273a693fc11833e75adce6
Base64:
5qOY