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