C:
char c = '\u5155';
printf("%c\n", c); // Output: 兕
JavaScript:
const char = '\u5155';
console.log(char); // Output: 兕
Java:
char c = '\u5155';
System.out.println(c); // Output: 兕
JSON:
{"text": "\u5155"} // Value: 兕
Python:
char = '\u5155'
print(char) # Output: 兕
Perl:
my $char = "\x{5155}";
print $char; # Output: 兕
PHP:
$char = "\x{5155}";
echo $char; // Output: 兕
Ruby:
char = "\u{5155}"
puts char # Output: 兕
Rust:
let c = '\u{5155}';
println!("{}", c); // Output: 兕
Go:
char := '\u5155'
fmt.Printf("%c\n", char) // Output: 兕
CSS:
/* CSS content property */
.element::before {
content: "\005155"; /* 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%85%95
MD5:
a79579f43a465cef1f72a5c29b388989
SHA1:
528f3f7380533cdc2426eb78a3551f03ddb0d317
Base64:
5YWV