C:
char c = '\u5203';
printf("%c\n", c); // Output: 刃
JavaScript:
const char = '\u5203';
console.log(char); // Output: 刃
Java:
char c = '\u5203';
System.out.println(c); // Output: 刃
JSON:
{"text": "\u5203"} // Value: 刃
Python:
char = '\u5203'
print(char) # Output: 刃
Perl:
my $char = "\x{5203}";
print $char; # Output: 刃
PHP:
$char = "\x{5203}";
echo $char; // Output: 刃
Ruby:
char = "\u{5203}"
puts char # Output: 刃
Rust:
let c = '\u{5203}';
println!("{}", c); // Output: 刃
Go:
char := '\u5203'
fmt.Printf("%c\n", char) // Output: 刃
CSS:
/* CSS content property */
.element::before {
content: "\005203"; /* 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%88%83
MD5:
38b34f7027cd59c8641afc5183ce534d
SHA1:
e4faa4f917a760261924655cc3e8af4124c8c391
Base64:
5YiD