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