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