C:
char c = '\u862D';
printf("%c\n", c); // Output: 蘭
JavaScript:
const char = '\u862D';
console.log(char); // Output: 蘭
Java:
char c = '\u862D';
System.out.println(c); // Output: 蘭
JSON:
{"text": "\u862D"} // Value: 蘭
Python:
char = '\u862D'
print(char) # Output: 蘭
Perl:
my $char = "\x{862D}";
print $char; # Output: 蘭
PHP:
$char = "\x{862D}";
echo $char; // Output: 蘭
Ruby:
char = "\u{862D}"
puts char # Output: 蘭
Rust:
let c = '\u{862D}';
println!("{}", c); // Output: 蘭
Go:
char := '\u862D'
fmt.Printf("%c\n", char) // Output: 蘭
CSS:
/* CSS content property */
.element::before {
content: "\00862D"; /* 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=%E8%98%AD
MD5:
cd0edb86e9dc56f3c7edb917a2e9903c
SHA1:
9f13d59191b31073cc1a5764c942413ef7f8599c
Base64:
6Jit