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