C:
char c = '\u6700';
printf("%c\n", c); // Output: 最
JavaScript:
const char = '\u6700';
console.log(char); // Output: 最
Java:
char c = '\u6700';
System.out.println(c); // Output: 最
JSON:
{"text": "\u6700"} // Value: 最
Python:
char = '\u6700'
print(char) # Output: 最
Perl:
my $char = "\x{6700}";
print $char; # Output: 最
PHP:
$char = "\x{6700}";
echo $char; // Output: 最
Ruby:
char = "\u{6700}"
puts char # Output: 最
Rust:
let c = '\u{6700}';
println!("{}", c); // Output: 最
Go:
char := '\u6700'
fmt.Printf("%c\n", char) // Output: 最
CSS:
/* CSS content property */
.element::before {
content: "\006700"; /* 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%9C%80
MD5:
084fa77fa057250a7218150a0f8df1f3
SHA1:
dfa685b3855d3234a977bde11636f680bc827132
Base64:
5pyA