C:
char c = '\u5343';
printf("%c\n", c); // Output: 千
JavaScript:
const char = '\u5343';
console.log(char); // Output: 千
Java:
char c = '\u5343';
System.out.println(c); // Output: 千
JSON:
{"text": "\u5343"} // Value: 千
Python:
char = '\u5343'
print(char) # Output: 千
Perl:
my $char = "\x{5343}";
print $char; # Output: 千
PHP:
$char = "\x{5343}";
echo $char; // Output: 千
Ruby:
char = "\u{5343}"
puts char # Output: 千
Rust:
let c = '\u{5343}';
println!("{}", c); // Output: 千
Go:
char := '\u5343'
fmt.Printf("%c\n", char) // Output: 千
CSS:
/* CSS content property */
.element::before {
content: "\005343"; /* 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%8D%83
MD5:
c821e5223135e2a6d01c36f3064d30f6
SHA1:
b9bcd0ac15cdd14b869114b9be28d842f65edbab
Base64:
5Y2D