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