C:
char c = '\uB66E';
printf("%c\n", c); // Output: 뙮
JavaScript:
const char = '\uB66E';
console.log(char); // Output: 뙮
Java:
char c = '\uB66E';
System.out.println(c); // Output: 뙮
JSON:
{"text": "\uB66E"} // Value: 뙮
Python:
char = '\uB66E'
print(char) # Output: 뙮
Perl:
my $char = "\x{B66E}";
print $char; # Output: 뙮
PHP:
$char = "\x{B66E}";
echo $char; // Output: 뙮
Ruby:
char = "\u{B66E}"
puts char # Output: 뙮
Rust:
let c = '\u{B66E}';
println!("{}", c); // Output: 뙮
Go:
char := '\uB66E'
fmt.Printf("%c\n", char) // Output: 뙮
CSS:
/* CSS content property */
.element::before {
content: "\00B66E"; /* 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=%EB%99%AE
MD5:
c5c8c216709caaab9e17390753aacdcb
SHA1:
b13387ffcd8d8338852098bcbddb86e9e650bf1c
Base64:
65mu