C:
char c = '\uB853';
printf("%c\n", c); // Output: 롓
JavaScript:
const char = '\uB853';
console.log(char); // Output: 롓
Java:
char c = '\uB853';
System.out.println(c); // Output: 롓
JSON:
{"text": "\uB853"} // Value: 롓
Python:
char = '\uB853'
print(char) # Output: 롓
Perl:
my $char = "\x{B853}";
print $char; # Output: 롓
PHP:
$char = "\x{B853}";
echo $char; // Output: 롓
Ruby:
char = "\u{B853}"
puts char # Output: 롓
Rust:
let c = '\u{B853}';
println!("{}", c); // Output: 롓
Go:
char := '\uB853'
fmt.Printf("%c\n", char) // Output: 롓
CSS:
/* CSS content property */
.element::before {
content: "\00B853"; /* 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%A1%93
MD5:
8c1e728f80a5aa8667a514b630c17bcd
SHA1:
8e2a587510279ffd64f4e9df735d3cef7a3eaed3
Base64:
66GT