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