C:
char c = '\uB7F0';
printf("%c\n", c); // Output: 런
JavaScript:
const char = '\uB7F0';
console.log(char); // Output: 런
Java:
char c = '\uB7F0';
System.out.println(c); // Output: 런
JSON:
{"text": "\uB7F0"} // Value: 런
Python:
char = '\uB7F0'
print(char) # Output: 런
Perl:
my $char = "\x{B7F0}";
print $char; # Output: 런
PHP:
$char = "\x{B7F0}";
echo $char; // Output: 런
Ruby:
char = "\u{B7F0}"
puts char # Output: 런
Rust:
let c = '\u{B7F0}';
println!("{}", c); // Output: 런
Go:
char := '\uB7F0'
fmt.Printf("%c\n", char) // Output: 런
CSS:
/* CSS content property */
.element::before {
content: "\00B7F0"; /* 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%9F%B0
MD5:
d758ec8331ff3ed7de3eb86aa159f75e
SHA1:
e947dd8a9cb9c5e1bf57f73fc1ec0dbb57b7b2d7
Base64:
65+w