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