C:
char c = '\uB98F';
printf("%c\n", c); // Output: 릏
JavaScript:
const char = '\uB98F';
console.log(char); // Output: 릏
Java:
char c = '\uB98F';
System.out.println(c); // Output: 릏
JSON:
{"text": "\uB98F"} // Value: 릏
Python:
char = '\uB98F'
print(char) # Output: 릏
Perl:
my $char = "\x{B98F}";
print $char; # Output: 릏
PHP:
$char = "\x{B98F}";
echo $char; // Output: 릏
Ruby:
char = "\u{B98F}"
puts char # Output: 릏
Rust:
let c = '\u{B98F}';
println!("{}", c); // Output: 릏
Go:
char := '\uB98F'
fmt.Printf("%c\n", char) // Output: 릏
CSS:
/* CSS content property */
.element::before {
content: "\00B98F"; /* 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%A6%8F
MD5:
2fd5a2412d96b982262e4ab175a06a1b
SHA1:
f73359560215d961eb82f9a84ec56e77886c92f9
Base64:
66aP