C:
char c = '\u5BF2';
printf("%c\n", c); // Output: 寲
JavaScript:
const char = '\u5BF2';
console.log(char); // Output: 寲
Java:
char c = '\u5BF2';
System.out.println(c); // Output: 寲
JSON:
{"text": "\u5BF2"} // Value: 寲
Python:
char = '\u5BF2'
print(char) # Output: 寲
Perl:
my $char = "\x{5BF2}";
print $char; # Output: 寲
PHP:
$char = "\x{5BF2}";
echo $char; // Output: 寲
Ruby:
char = "\u{5BF2}"
puts char # Output: 寲
Rust:
let c = '\u{5BF2}';
println!("{}", c); // Output: 寲
Go:
char := '\u5BF2'
fmt.Printf("%c\n", char) // Output: 寲
CSS:
/* CSS content property */
.element::before {
content: "\005BF2"; /* 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%AF%B2
MD5:
1e0e220c1edc043a0bad908d5750ebe0
SHA1:
bdb981de48a8eb0a21b573907ee645947f6fee01
Base64:
5a+y