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