C:
char c = '\u6632';
printf("%c\n", c); // Output: 昲
JavaScript:
const char = '\u6632';
console.log(char); // Output: 昲
Java:
char c = '\u6632';
System.out.println(c); // Output: 昲
JSON:
{"text": "\u6632"} // Value: 昲
Python:
char = '\u6632'
print(char) # Output: 昲
Perl:
my $char = "\x{6632}";
print $char; # Output: 昲
PHP:
$char = "\x{6632}";
echo $char; // Output: 昲
Ruby:
char = "\u{6632}"
puts char # Output: 昲
Rust:
let c = '\u{6632}';
println!("{}", c); // Output: 昲
Go:
char := '\u6632'
fmt.Printf("%c\n", char) // Output: 昲
CSS:
/* CSS content property */
.element::before {
content: "\006632"; /* 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=%E6%98%B2
MD5:
ec5ef1b92e55d4b0319a536c23d254b9
SHA1:
360c3da990ca35f1ab86e66c9acbf5e1690335d3
Base64:
5piy