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