C:
char c = '\u6090';
printf("%c\n", c); // Output: 悐
JavaScript:
const char = '\u6090';
console.log(char); // Output: 悐
Java:
char c = '\u6090';
System.out.println(c); // Output: 悐
JSON:
{"text": "\u6090"} // Value: 悐
Python:
char = '\u6090'
print(char) # Output: 悐
Perl:
my $char = "\x{6090}";
print $char; # Output: 悐
PHP:
$char = "\x{6090}";
echo $char; // Output: 悐
Ruby:
char = "\u{6090}"
puts char # Output: 悐
Rust:
let c = '\u{6090}';
println!("{}", c); // Output: 悐
Go:
char := '\u6090'
fmt.Printf("%c\n", char) // Output: 悐
CSS:
/* CSS content property */
.element::before {
content: "\006090"; /* 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%82%90
MD5:
e69e8bb376645c1bf52f74476323e841
SHA1:
8f39acf6fdbcd3818810d46863fcdaa8f8501501
Base64:
5oKQ