C:
char c = '\u5160';
printf("%c\n", c); // Output: 兠
JavaScript:
const char = '\u5160';
console.log(char); // Output: 兠
Java:
char c = '\u5160';
System.out.println(c); // Output: 兠
JSON:
{"text": "\u5160"} // Value: 兠
Python:
char = '\u5160'
print(char) # Output: 兠
Perl:
my $char = "\x{5160}";
print $char; # Output: 兠
PHP:
$char = "\x{5160}";
echo $char; // Output: 兠
Ruby:
char = "\u{5160}"
puts char # Output: 兠
Rust:
let c = '\u{5160}';
println!("{}", c); // Output: 兠
Go:
char := '\u5160'
fmt.Printf("%c\n", char) // Output: 兠
CSS:
/* CSS content property */
.element::before {
content: "\005160"; /* 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%A0
MD5:
a293628af89228607945eb02b9315e6d
SHA1:
fa4babe2fc5c7fb1de354f067b043e1e7d89fcd8
Base64:
5YWg