C:
char c = '\u5140';
printf("%c\n", c); // Output: 兀
JavaScript:
const char = '\u5140';
console.log(char); // Output: 兀
Java:
char c = '\u5140';
System.out.println(c); // Output: 兀
JSON:
{"text": "\u5140"} // Value: 兀
Python:
char = '\u5140'
print(char) # Output: 兀
Perl:
my $char = "\x{5140}";
print $char; # Output: 兀
PHP:
$char = "\x{5140}";
echo $char; // Output: 兀
Ruby:
char = "\u{5140}"
puts char # Output: 兀
Rust:
let c = '\u{5140}';
println!("{}", c); // Output: 兀
Go:
char := '\u5140'
fmt.Printf("%c\n", char) // Output: 兀
CSS:
/* CSS content property */
.element::before {
content: "\005140"; /* 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%80
MD5:
6474a412a61761d91f28d67f4d721fe9
SHA1:
6bafaaa256a1cb6a7ba817aa8c5cd6a07362e834
Base64:
5YWA