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