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