C:
char c = '\u525F';
printf("%c\n", c); // Output: 剟
JavaScript:
const char = '\u525F';
console.log(char); // Output: 剟
Java:
char c = '\u525F';
System.out.println(c); // Output: 剟
JSON:
{"text": "\u525F"} // Value: 剟
Python:
char = '\u525F'
print(char) # Output: 剟
Perl:
my $char = "\x{525F}";
print $char; # Output: 剟
PHP:
$char = "\x{525F}";
echo $char; // Output: 剟
Ruby:
char = "\u{525F}"
puts char # Output: 剟
Rust:
let c = '\u{525F}';
println!("{}", c); // Output: 剟
Go:
char := '\u525F'
fmt.Printf("%c\n", char) // Output: 剟
CSS:
/* CSS content property */
.element::before {
content: "\00525F"; /* 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%9F
MD5:
b1f9de4f8d4d8bf8831c613ed4b30fcf
SHA1:
34ed7b59c6f55dd7fd37098e9e25bc2692583f7c
Base64:
5Ymf