C:
char c = '\u6C85';
printf("%c\n", c); // Output: 沅
JavaScript:
const char = '\u6C85';
console.log(char); // Output: 沅
Java:
char c = '\u6C85';
System.out.println(c); // Output: 沅
JSON:
{"text": "\u6C85"} // Value: 沅
Python:
char = '\u6C85'
print(char) # Output: 沅
Perl:
my $char = "\x{6C85}";
print $char; # Output: 沅
PHP:
$char = "\x{6C85}";
echo $char; // Output: 沅
Ruby:
char = "\u{6C85}"
puts char # Output: 沅
Rust:
let c = '\u{6C85}';
println!("{}", c); // Output: 沅
Go:
char := '\u6C85'
fmt.Printf("%c\n", char) // Output: 沅
CSS:
/* CSS content property */
.element::before {
content: "\006C85"; /* 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%B2%85
MD5:
6ddbf400834f8ae970b6f2f130ecf971
SHA1:
f491049cb323be115de6faedf40185d5a3915218
Base64:
5rKF