C:
char c = '\u6623';
printf("%c\n", c); // Output: 昣
JavaScript:
const char = '\u6623';
console.log(char); // Output: 昣
Java:
char c = '\u6623';
System.out.println(c); // Output: 昣
JSON:
{"text": "\u6623"} // Value: 昣
Python:
char = '\u6623'
print(char) # Output: 昣
Perl:
my $char = "\x{6623}";
print $char; # Output: 昣
PHP:
$char = "\x{6623}";
echo $char; // Output: 昣
Ruby:
char = "\u{6623}"
puts char # Output: 昣
Rust:
let c = '\u{6623}';
println!("{}", c); // Output: 昣
Go:
char := '\u6623'
fmt.Printf("%c\n", char) // Output: 昣
CSS:
/* CSS content property */
.element::before {
content: "\006623"; /* 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%A3
MD5:
2f4020e4732e70117687fd14b968e97b
SHA1:
d3a605fdcf27d39eb3e8eef96e6bd12c8099cc03
Base64:
5pij