C:
char c = '\u6969';
printf("%c\n", c); // Output: 楩
JavaScript:
const char = '\u6969';
console.log(char); // Output: 楩
Java:
char c = '\u6969';
System.out.println(c); // Output: 楩
JSON:
{"text": "\u6969"} // Value: 楩
Python:
char = '\u6969'
print(char) # Output: 楩
Perl:
my $char = "\x{6969}";
print $char; # Output: 楩
PHP:
$char = "\x{6969}";
echo $char; // Output: 楩
Ruby:
char = "\u{6969}"
puts char # Output: 楩
Rust:
let c = '\u{6969}';
println!("{}", c); // Output: 楩
Go:
char := '\u6969'
fmt.Printf("%c\n", char) // Output: 楩
CSS:
/* CSS content property */
.element::before {
content: "\006969"; /* 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%A5%A9
MD5:
3bb20a100ed5d99bdb201b177d51643a
SHA1:
2c3198c3202f519590a8c0584bba018a25574870
Base64:
5qWp