C:
char c = '\u5723';
printf("%c\n", c); // Output: 圣
JavaScript:
const char = '\u5723';
console.log(char); // Output: 圣
Java:
char c = '\u5723';
System.out.println(c); // Output: 圣
JSON:
{"text": "\u5723"} // Value: 圣
Python:
char = '\u5723'
print(char) # Output: 圣
Perl:
my $char = "\x{5723}";
print $char; # Output: 圣
PHP:
$char = "\x{5723}";
echo $char; // Output: 圣
Ruby:
char = "\u{5723}"
puts char # Output: 圣
Rust:
let c = '\u{5723}';
println!("{}", c); // Output: 圣
Go:
char := '\u5723'
fmt.Printf("%c\n", char) // Output: 圣
CSS:
/* CSS content property */
.element::before {
content: "\005723"; /* 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%A3
MD5:
09b4ac08e8cd617431bd95c525348100
SHA1:
420681a1d7800d38b846c306b9df012672188314
Base64:
5Zyj