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