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