C:
char c = '\u5DF2';
printf("%c\n", c); // Output: 已
JavaScript:
const char = '\u5DF2';
console.log(char); // Output: 已
Java:
char c = '\u5DF2';
System.out.println(c); // Output: 已
JSON:
{"text": "\u5DF2"} // Value: 已
Python:
char = '\u5DF2'
print(char) # Output: 已
Perl:
my $char = "\x{5DF2}";
print $char; # Output: 已
PHP:
$char = "\x{5DF2}";
echo $char; // Output: 已
Ruby:
char = "\u{5DF2}"
puts char # Output: 已
Rust:
let c = '\u{5DF2}';
println!("{}", c); // Output: 已
Go:
char := '\u5DF2'
fmt.Printf("%c\n", char) // Output: 已
CSS:
/* CSS content property */
.element::before {
content: "\005DF2"; /* 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%B2
MD5:
8a3f8eabfecb120a9cecbe795e7cf19a
SHA1:
4232e87944c47ef602c045804e282e9158cb2d81
Base64:
5bey