C:
char c = '\u505A';
printf("%c\n", c); // Output: 做
JavaScript:
const char = '\u505A';
console.log(char); // Output: 做
Java:
char c = '\u505A';
System.out.println(c); // Output: 做
JSON:
{"text": "\u505A"} // Value: 做
Python:
char = '\u505A'
print(char) # Output: 做
Perl:
my $char = "\x{505A}";
print $char; # Output: 做
PHP:
$char = "\x{505A}";
echo $char; // Output: 做
Ruby:
char = "\u{505A}"
puts char # Output: 做
Rust:
let c = '\u{505A}';
println!("{}", c); // Output: 做
Go:
char := '\u505A'
fmt.Printf("%c\n", char) // Output: 做
CSS:
/* CSS content property */
.element::before {
content: "\00505A"; /* 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%81%9A
MD5:
7105106a36ff06806692037584f626b3
SHA1:
715fb2c0eff542392f12d6a423618bd84978654c
Base64:
5YGa