C:
char c = '\u516A';
printf("%c\n", c); // Output: 兪
JavaScript:
const char = '\u516A';
console.log(char); // Output: 兪
Java:
char c = '\u516A';
System.out.println(c); // Output: 兪
JSON:
{"text": "\u516A"} // Value: 兪
Python:
char = '\u516A'
print(char) # Output: 兪
Perl:
my $char = "\x{516A}";
print $char; # Output: 兪
PHP:
$char = "\x{516A}";
echo $char; // Output: 兪
Ruby:
char = "\u{516A}"
puts char # Output: 兪
Rust:
let c = '\u{516A}';
println!("{}", c); // Output: 兪
Go:
char := '\u516A'
fmt.Printf("%c\n", char) // Output: 兪
CSS:
/* CSS content property */
.element::before {
content: "\00516A"; /* 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=%E5%85%AA
MD5:
8dccceac16e43513abff2522666560eb
SHA1:
af76c205f1396b5f71c9731d3fadde691013e260
Base64:
5YWq