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