C:
char c = '\u4EE3';
printf("%c\n", c); // Output: 代
JavaScript:
const char = '\u4EE3';
console.log(char); // Output: 代
Java:
char c = '\u4EE3';
System.out.println(c); // Output: 代
JSON:
{"text": "\u4EE3"} // Value: 代
Python:
char = '\u4EE3'
print(char) # Output: 代
Perl:
my $char = "\x{4EE3}";
print $char; # Output: 代
PHP:
$char = "\x{4EE3}";
echo $char; // Output: 代
Ruby:
char = "\u{4EE3}"
puts char # Output: 代
Rust:
let c = '\u{4EE3}';
println!("{}", c); // Output: 代
Go:
char := '\u4EE3'
fmt.Printf("%c\n", char) // Output: 代
CSS:
/* CSS content property */
.element::before {
content: "\004EE3"; /* 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=%E4%BB%A3
MD5:
b93f7977c1651bf93e4ddeb9ae4e75e5
SHA1:
b5a9258cf7d945e600b608953f3c020c1e1aa10c
Base64:
5Luj