C:
char c = '\u6797';
printf("%c\n", c); // Output: 林
JavaScript:
const char = '\u6797';
console.log(char); // Output: 林
Java:
char c = '\u6797';
System.out.println(c); // Output: 林
JSON:
{"text": "\u6797"} // Value: 林
Python:
char = '\u6797'
print(char) # Output: 林
Perl:
my $char = "\x{6797}";
print $char; # Output: 林
PHP:
$char = "\x{6797}";
echo $char; // Output: 林
Ruby:
char = "\u{6797}"
puts char # Output: 林
Rust:
let c = '\u{6797}';
println!("{}", c); // Output: 林
Go:
char := '\u6797'
fmt.Printf("%c\n", char) // Output: 林
CSS:
/* CSS content property */
.element::before {
content: "\006797"; /* 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%9E%97
MD5:
70c4b42ab0e31b39bf266093151c508f
SHA1:
020ff479d2df7b0e8cc73de2df59c89fcb28d04c
Base64:
5p6X