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