C:
char c = '\u6C0F';
printf("%c\n", c); // Output: 氏
JavaScript:
const char = '\u6C0F';
console.log(char); // Output: 氏
Java:
char c = '\u6C0F';
System.out.println(c); // Output: 氏
JSON:
{"text": "\u6C0F"} // Value: 氏
Python:
char = '\u6C0F'
print(char) # Output: 氏
Perl:
my $char = "\x{6C0F}";
print $char; # Output: 氏
PHP:
$char = "\x{6C0F}";
echo $char; // Output: 氏
Ruby:
char = "\u{6C0F}"
puts char # Output: 氏
Rust:
let c = '\u{6C0F}';
println!("{}", c); // Output: 氏
Go:
char := '\u6C0F'
fmt.Printf("%c\n", char) // Output: 氏
CSS:
/* CSS content property */
.element::before {
content: "\006C0F"; /* 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%B0%8F
MD5:
e61a98b348c1d183bc1069525e6d2ead
SHA1:
a195f1c0f6eb8c2ac7dd24ed8c9486bcde0c7bdb
Base64:
5rCP