C:
char c = '\u9054';
printf("%c\n", c); // Output: 達
JavaScript:
const char = '\u9054';
console.log(char); // Output: 達
Java:
char c = '\u9054';
System.out.println(c); // Output: 達
JSON:
{"text": "\u9054"} // Value: 達
Python:
char = '\u9054'
print(char) # Output: 達
Perl:
my $char = "\x{9054}";
print $char; # Output: 達
PHP:
$char = "\x{9054}";
echo $char; // Output: 達
Ruby:
char = "\u{9054}"
puts char # Output: 達
Rust:
let c = '\u{9054}';
println!("{}", c); // Output: 達
Go:
char := '\u9054'
fmt.Printf("%c\n", char) // Output: 達
CSS:
/* CSS content property */
.element::before {
content: "\009054"; /* 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=%E9%81%94
MD5:
8e1461011ea5a43c867e50598531315c
SHA1:
8360055fec1bc47312400e3072c6db5d68ccbb13
Base64:
6YGU