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