C:
char c = '\u5707';
printf("%c\n", c); // Output: 圇
JavaScript:
const char = '\u5707';
console.log(char); // Output: 圇
Java:
char c = '\u5707';
System.out.println(c); // Output: 圇
JSON:
{"text": "\u5707"} // Value: 圇
Python:
char = '\u5707'
print(char) # Output: 圇
Perl:
my $char = "\x{5707}";
print $char; # Output: 圇
PHP:
$char = "\x{5707}";
echo $char; // Output: 圇
Ruby:
char = "\u{5707}"
puts char # Output: 圇
Rust:
let c = '\u{5707}';
println!("{}", c); // Output: 圇
Go:
char := '\u5707'
fmt.Printf("%c\n", char) // Output: 圇
CSS:
/* CSS content property */
.element::before {
content: "\005707"; /* 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%87
MD5:
802f88909981aaccb5647f504db6a372
SHA1:
888e6eef0e9aabc60e05ebf19a3542f28f880cd2
Base64:
5ZyH