C:
char c = '\u8032';
printf("%c\n", c); // Output: 耲
JavaScript:
const char = '\u8032';
console.log(char); // Output: 耲
Java:
char c = '\u8032';
System.out.println(c); // Output: 耲
JSON:
{"text": "\u8032"} // Value: 耲
Python:
char = '\u8032'
print(char) # Output: 耲
Perl:
my $char = "\x{8032}";
print $char; # Output: 耲
PHP:
$char = "\x{8032}";
echo $char; // Output: 耲
Ruby:
char = "\u{8032}"
puts char # Output: 耲
Rust:
let c = '\u{8032}';
println!("{}", c); // Output: 耲
Go:
char := '\u8032'
fmt.Printf("%c\n", char) // Output: 耲
CSS:
/* CSS content property */
.element::before {
content: "\008032"; /* 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=%E8%80%B2
MD5:
c8a8edf52a1deba93e12b0f2c59e704b
SHA1:
44d53381ba834e1a7f13b59b47e59c30097bb4fc
Base64:
6ICy