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