C:
char c = '\uB7AD';
printf("%c\n", c); // Output: 랭
JavaScript:
const char = '\uB7AD';
console.log(char); // Output: 랭
Java:
char c = '\uB7AD';
System.out.println(c); // Output: 랭
JSON:
{"text": "\uB7AD"} // Value: 랭
Python:
char = '\uB7AD'
print(char) # Output: 랭
Perl:
my $char = "\x{B7AD}";
print $char; # Output: 랭
PHP:
$char = "\x{B7AD}";
echo $char; // Output: 랭
Ruby:
char = "\u{B7AD}"
puts char # Output: 랭
Rust:
let c = '\u{B7AD}';
println!("{}", c); // Output: 랭
Go:
char := '\uB7AD'
fmt.Printf("%c\n", char) // Output: 랭
CSS:
/* CSS content property */
.element::before {
content: "\00B7AD"; /* 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%AD
MD5:
399c7bc37623db49b4cc35786da6fb09
SHA1:
59e2542421af307f7503b1b0c05c64819115d1d4
Base64:
656t