C:
char c = '\u831C';
printf("%c\n", c); // Output: 茜
JavaScript:
const char = '\u831C';
console.log(char); // Output: 茜
Java:
char c = '\u831C';
System.out.println(c); // Output: 茜
JSON:
{"text": "\u831C"} // Value: 茜
Python:
char = '\u831C'
print(char) # Output: 茜
Perl:
my $char = "\x{831C}";
print $char; # Output: 茜
PHP:
$char = "\x{831C}";
echo $char; // Output: 茜
Ruby:
char = "\u{831C}"
puts char # Output: 茜
Rust:
let c = '\u{831C}';
println!("{}", c); // Output: 茜
Go:
char := '\u831C'
fmt.Printf("%c\n", char) // Output: 茜
CSS:
/* CSS content property */
.element::before {
content: "\00831C"; /* 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=%E8%8C%9C
MD5:
986c7569482e933d75404a0c4806f37a
SHA1:
a1bbaf201a792061b2373aab8dbf3ddd2c481778
Base64:
6Iyc