C:
char c = '\u5710';
printf("%c\n", c); // Output: 圐
JavaScript:
const char = '\u5710';
console.log(char); // Output: 圐
Java:
char c = '\u5710';
System.out.println(c); // Output: 圐
JSON:
{"text": "\u5710"} // Value: 圐
Python:
char = '\u5710'
print(char) # Output: 圐
Perl:
my $char = "\x{5710}";
print $char; # Output: 圐
PHP:
$char = "\x{5710}";
echo $char; // Output: 圐
Ruby:
char = "\u{5710}"
puts char # Output: 圐
Rust:
let c = '\u{5710}';
println!("{}", c); // Output: 圐
Go:
char := '\u5710'
fmt.Printf("%c\n", char) // Output: 圐
CSS:
/* CSS content property */
.element::before {
content: "\005710"; /* 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%90
MD5:
b246ad2936585ea5effd9f00226f1d2b
SHA1:
1bd97b5cad0ae50e886dbd7d39bc9796bf7368be
Base64:
5ZyQ