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