C:
char c = '\u6025';
printf("%c\n", c); // Output: 急
JavaScript:
const char = '\u6025';
console.log(char); // Output: 急
Java:
char c = '\u6025';
System.out.println(c); // Output: 急
JSON:
{"text": "\u6025"} // Value: 急
Python:
char = '\u6025'
print(char) # Output: 急
Perl:
my $char = "\x{6025}";
print $char; # Output: 急
PHP:
$char = "\x{6025}";
echo $char; // Output: 急
Ruby:
char = "\u{6025}"
puts char # Output: 急
Rust:
let c = '\u{6025}';
println!("{}", c); // Output: 急
Go:
char := '\u6025'
fmt.Printf("%c\n", char) // Output: 急
CSS:
/* CSS content property */
.element::before {
content: "\006025"; /* 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=%E6%80%A5
MD5:
6da09b98349c4661bc96eb4e7ab808f0
SHA1:
eec997cbbb9cc92a72f1e77be3a479d50f6efec9
Base64:
5oCl