C:
char c = '\u6986';
printf("%c\n", c); // Output: 榆
JavaScript:
const char = '\u6986';
console.log(char); // Output: 榆
Java:
char c = '\u6986';
System.out.println(c); // Output: 榆
JSON:
{"text": "\u6986"} // Value: 榆
Python:
char = '\u6986'
print(char) # Output: 榆
Perl:
my $char = "\x{6986}";
print $char; # Output: 榆
PHP:
$char = "\x{6986}";
echo $char; // Output: 榆
Ruby:
char = "\u{6986}"
puts char # Output: 榆
Rust:
let c = '\u{6986}';
println!("{}", c); // Output: 榆
Go:
char := '\u6986'
fmt.Printf("%c\n", char) // Output: 榆
CSS:
/* CSS content property */
.element::before {
content: "\006986"; /* 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%A6%86
MD5:
a1dc0a7842f7cf890a3527da68c25afd
SHA1:
4a94644d87d1b267cddbf9748496879e714311f0
Base64:
5qaG