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