C:
char c = '\u6601';
printf("%c\n", c); // Output: 昁
JavaScript:
const char = '\u6601';
console.log(char); // Output: 昁
Java:
char c = '\u6601';
System.out.println(c); // Output: 昁
JSON:
{"text": "\u6601"} // Value: 昁
Python:
char = '\u6601'
print(char) # Output: 昁
Perl:
my $char = "\x{6601}";
print $char; # Output: 昁
PHP:
$char = "\x{6601}";
echo $char; // Output: 昁
Ruby:
char = "\u{6601}"
puts char # Output: 昁
Rust:
let c = '\u{6601}';
println!("{}", c); // Output: 昁
Go:
char := '\u6601'
fmt.Printf("%c\n", char) // Output: 昁
CSS:
/* CSS content property */
.element::before {
content: "\006601"; /* 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%81
MD5:
64618b73f8597111171174e98d2c4650
SHA1:
ff4c3a5edb85448872af7b5898ce9952eb27dbcd
Base64:
5piB