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