C:
char c = '\u68F3';
printf("%c\n", c); // Output: 棳
JavaScript:
const char = '\u68F3';
console.log(char); // Output: 棳
Java:
char c = '\u68F3';
System.out.println(c); // Output: 棳
JSON:
{"text": "\u68F3"} // Value: 棳
Python:
char = '\u68F3'
print(char) # Output: 棳
Perl:
my $char = "\x{68F3}";
print $char; # Output: 棳
PHP:
$char = "\x{68F3}";
echo $char; // Output: 棳
Ruby:
char = "\u{68F3}"
puts char # Output: 棳
Rust:
let c = '\u{68F3}';
println!("{}", c); // Output: 棳
Go:
char := '\u68F3'
fmt.Printf("%c\n", char) // Output: 棳
CSS:
/* CSS content property */
.element::before {
content: "\0068F3"; /* 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%B3
MD5:
74c3a8e2ddbdb99d90e5d03b83b730b9
SHA1:
db2e3fb7acc5df2a6292bd3ba7eed17ad7063882
Base64:
5qOz