C:
char c = '\u8C26';
printf("%c\n", c); // Output: 谦
JavaScript:
const char = '\u8C26';
console.log(char); // Output: 谦
Java:
char c = '\u8C26';
System.out.println(c); // Output: 谦
JSON:
{"text": "\u8C26"} // Value: 谦
Python:
char = '\u8C26'
print(char) # Output: 谦
Perl:
my $char = "\x{8C26}";
print $char; # Output: 谦
PHP:
$char = "\x{8C26}";
echo $char; // Output: 谦
Ruby:
char = "\u{8C26}"
puts char # Output: 谦
Rust:
let c = '\u{8C26}';
println!("{}", c); // Output: 谦
Go:
char := '\u8C26'
fmt.Printf("%c\n", char) // Output: 谦
CSS:
/* CSS content property */
.element::before {
content: "\008C26"; /* 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=%E8%B0%A6
MD5:
faa63ed771d7a7a7ead6279fdc6b07cb
SHA1:
a7a55cf6a5e46dc429231712f441071d78fb68f9
Base64:
6LCm