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