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