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