C:
char c = '\u6631';
printf("%c\n", c); // Output: 昱
JavaScript:
const char = '\u6631';
console.log(char); // Output: 昱
Java:
char c = '\u6631';
System.out.println(c); // Output: 昱
JSON:
{"text": "\u6631"} // Value: 昱
Python:
char = '\u6631'
print(char) # Output: 昱
Perl:
my $char = "\x{6631}";
print $char; # Output: 昱
PHP:
$char = "\x{6631}";
echo $char; // Output: 昱
Ruby:
char = "\u{6631}"
puts char # Output: 昱
Rust:
let c = '\u{6631}';
println!("{}", c); // Output: 昱
Go:
char := '\u6631'
fmt.Printf("%c\n", char) // Output: 昱
CSS:
/* CSS content property */
.element::before {
content: "\006631"; /* 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%B1
MD5:
fdc8a9d9abbb2eed78825c624e0fd8b5
SHA1:
2106acd276e48347558459625fedeac99fb48f84
Base64:
5pix