C:
char c = '\u5701';
printf("%c\n", c); // Output: 圁
JavaScript:
const char = '\u5701';
console.log(char); // Output: 圁
Java:
char c = '\u5701';
System.out.println(c); // Output: 圁
JSON:
{"text": "\u5701"} // Value: 圁
Python:
char = '\u5701'
print(char) # Output: 圁
Perl:
my $char = "\x{5701}";
print $char; # Output: 圁
PHP:
$char = "\x{5701}";
echo $char; // Output: 圁
Ruby:
char = "\u{5701}"
puts char # Output: 圁
Rust:
let c = '\u{5701}';
println!("{}", c); // Output: 圁
Go:
char := '\u5701'
fmt.Printf("%c\n", char) // Output: 圁
CSS:
/* CSS content property */
.element::before {
content: "\005701"; /* 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%81
MD5:
0c2f38d151f55b141d5c0fde05c4ab49
SHA1:
16d70e800206a050bf7fa8c7c6b23d3e247bbcb3
Base64:
5ZyB