C:
char c = '\u5724';
printf("%c\n", c); // Output: 圤
JavaScript:
const char = '\u5724';
console.log(char); // Output: 圤
Java:
char c = '\u5724';
System.out.println(c); // Output: 圤
JSON:
{"text": "\u5724"} // Value: 圤
Python:
char = '\u5724'
print(char) # Output: 圤
Perl:
my $char = "\x{5724}";
print $char; # Output: 圤
PHP:
$char = "\x{5724}";
echo $char; // Output: 圤
Ruby:
char = "\u{5724}"
puts char # Output: 圤
Rust:
let c = '\u{5724}';
println!("{}", c); // Output: 圤
Go:
char := '\u5724'
fmt.Printf("%c\n", char) // Output: 圤
CSS:
/* CSS content property */
.element::before {
content: "\005724"; /* 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%A4
MD5:
9fe4e72f7329fd75106d647d71d9b754
SHA1:
6a4cac0d348760fd879f0d4b78637d29fde03436
Base64:
5Zyk