C:
char c = '\u5DF3';
printf("%c\n", c); // Output: 巳
JavaScript:
const char = '\u5DF3';
console.log(char); // Output: 巳
Java:
char c = '\u5DF3';
System.out.println(c); // Output: 巳
JSON:
{"text": "\u5DF3"} // Value: 巳
Python:
char = '\u5DF3'
print(char) # Output: 巳
Perl:
my $char = "\x{5DF3}";
print $char; # Output: 巳
PHP:
$char = "\x{5DF3}";
echo $char; // Output: 巳
Ruby:
char = "\u{5DF3}"
puts char # Output: 巳
Rust:
let c = '\u{5DF3}';
println!("{}", c); // Output: 巳
Go:
char := '\u5DF3'
fmt.Printf("%c\n", char) // Output: 巳
CSS:
/* CSS content property */
.element::before {
content: "\005DF3"; /* 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=%E5%B7%B3
MD5:
61b4b92e05154c731380a7263ada3ed5
SHA1:
0103aa5722f605da1ba1ef44539f8876638e20ff
Base64:
5bez