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