C:
char c = '\u5144';
printf("%c\n", c); // Output: 兄
JavaScript:
const char = '\u5144';
console.log(char); // Output: 兄
Java:
char c = '\u5144';
System.out.println(c); // Output: 兄
JSON:
{"text": "\u5144"} // Value: 兄
Python:
char = '\u5144'
print(char) # Output: 兄
Perl:
my $char = "\x{5144}";
print $char; # Output: 兄
PHP:
$char = "\x{5144}";
echo $char; // Output: 兄
Ruby:
char = "\u{5144}"
puts char # Output: 兄
Rust:
let c = '\u{5144}';
println!("{}", c); // Output: 兄
Go:
char := '\u5144'
fmt.Printf("%c\n", char) // Output: 兄
CSS:
/* CSS content property */
.element::before {
content: "\005144"; /* 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%84
MD5:
63b9b59ee9b7e9f2db9518d9f3082e41
SHA1:
1b60f62fba6e4d69d604651388647658f1457aa3
Base64:
5YWE