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