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