C:
char c = '\uB7B3';
printf("%c\n", c); // Output: 랳
JavaScript:
const char = '\uB7B3';
console.log(char); // Output: 랳
Java:
char c = '\uB7B3';
System.out.println(c); // Output: 랳
JSON:
{"text": "\uB7B3"} // Value: 랳
Python:
char = '\uB7B3'
print(char) # Output: 랳
Perl:
my $char = "\x{B7B3}";
print $char; # Output: 랳
PHP:
$char = "\x{B7B3}";
echo $char; // Output: 랳
Ruby:
char = "\u{B7B3}"
puts char # Output: 랳
Rust:
let c = '\u{B7B3}';
println!("{}", c); // Output: 랳
Go:
char := '\uB7B3'
fmt.Printf("%c\n", char) // Output: 랳
CSS:
/* CSS content property */
.element::before {
content: "\00B7B3"; /* 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%9E%B3
MD5:
27ece12006d04b04caa2b6ac66066a19
SHA1:
ad5027a94eaae1fca2ebcd3e84da54a2e30c1a6f
Base64:
656z