C:
char c = '\uB36B';
printf("%c\n", c); // Output: 덫
JavaScript:
const char = '\uB36B';
console.log(char); // Output: 덫
Java:
char c = '\uB36B';
System.out.println(c); // Output: 덫
JSON:
{"text": "\uB36B"} // Value: 덫
Python:
char = '\uB36B'
print(char) # Output: 덫
Perl:
my $char = "\x{B36B}";
print $char; # Output: 덫
PHP:
$char = "\x{B36B}";
echo $char; // Output: 덫
Ruby:
char = "\u{B36B}"
puts char # Output: 덫
Rust:
let c = '\u{B36B}';
println!("{}", c); // Output: 덫
Go:
char := '\uB36B'
fmt.Printf("%c\n", char) // Output: 덫
CSS:
/* CSS content property */
.element::before {
content: "\00B36B"; /* 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%8D%AB
MD5:
7849369affbc43501afcdf40468be4c0
SHA1:
7f4ccf3e1ccb1ff68f97a2209893fbb5de43bbb5
Base64:
642r