C:
char c = '\u6211';
printf("%c\n", c); // Output: 我
JavaScript:
const char = '\u6211';
console.log(char); // Output: 我
Java:
char c = '\u6211';
System.out.println(c); // Output: 我
JSON:
{"text": "\u6211"} // Value: 我
Python:
char = '\u6211'
print(char) # Output: 我
Perl:
my $char = "\x{6211}";
print $char; # Output: 我
PHP:
$char = "\x{6211}";
echo $char; // Output: 我
Ruby:
char = "\u{6211}"
puts char # Output: 我
Rust:
let c = '\u{6211}';
println!("{}", c); // Output: 我
Go:
char := '\u6211'
fmt.Printf("%c\n", char) // Output: 我
CSS:
/* CSS content property */
.element::before {
content: "\006211"; /* 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%88%91
MD5:
16815254531798dc21ee979d1d9c6675
SHA1:
34f201bc507e33caaef736de328bf041234d1138
Base64:
5oiR