C:
char c = '\u5166';
printf("%c\n", c); // Output: 兦
JavaScript:
const char = '\u5166';
console.log(char); // Output: 兦
Java:
char c = '\u5166';
System.out.println(c); // Output: 兦
JSON:
{"text": "\u5166"} // Value: 兦
Python:
char = '\u5166'
print(char) # Output: 兦
Perl:
my $char = "\x{5166}";
print $char; # Output: 兦
PHP:
$char = "\x{5166}";
echo $char; // Output: 兦
Ruby:
char = "\u{5166}"
puts char # Output: 兦
Rust:
let c = '\u{5166}';
println!("{}", c); // Output: 兦
Go:
char := '\u5166'
fmt.Printf("%c\n", char) // Output: 兦
CSS:
/* CSS content property */
.element::before {
content: "\005166"; /* 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%A6
MD5:
701f2c47ed84e466ca2d0fabd7805146
SHA1:
a56dcad4ccdbbe1aaf7a13c049af931456722729
Base64:
5YWm