C:
char c = '\u6757';
printf("%c\n", c); // Output: 杗
JavaScript:
const char = '\u6757';
console.log(char); // Output: 杗
Java:
char c = '\u6757';
System.out.println(c); // Output: 杗
JSON:
{"text": "\u6757"} // Value: 杗
Python:
char = '\u6757'
print(char) # Output: 杗
Perl:
my $char = "\x{6757}";
print $char; # Output: 杗
PHP:
$char = "\x{6757}";
echo $char; // Output: 杗
Ruby:
char = "\u{6757}"
puts char # Output: 杗
Rust:
let c = '\u{6757}';
println!("{}", c); // Output: 杗
Go:
char := '\u6757'
fmt.Printf("%c\n", char) // Output: 杗
CSS:
/* CSS content property */
.element::before {
content: "\006757"; /* 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%9D%97
MD5:
7d0f9e12796dfe30b8715458656a38fa
SHA1:
7e9999067760bc179dba36ebc5a26bc379f58b74
Base64:
5p2X