C:
char c = '\u5106';
printf("%c\n", c); // Output: 儆
JavaScript:
const char = '\u5106';
console.log(char); // Output: 儆
Java:
char c = '\u5106';
System.out.println(c); // Output: 儆
JSON:
{"text": "\u5106"} // Value: 儆
Python:
char = '\u5106'
print(char) # Output: 儆
Perl:
my $char = "\x{5106}";
print $char; # Output: 儆
PHP:
$char = "\x{5106}";
echo $char; // Output: 儆
Ruby:
char = "\u{5106}"
puts char # Output: 儆
Rust:
let c = '\u{5106}';
println!("{}", c); // Output: 儆
Go:
char := '\u5106'
fmt.Printf("%c\n", char) // Output: 儆
CSS:
/* CSS content property */
.element::before {
content: "\005106"; /* 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%84%86
MD5:
9f9ca314602f760462adbe3d6d96dfe0
SHA1:
e17c8f0bd9ee5222494144dcfcb4df5e0cb4c34a
Base64:
5YSG