C:
char c = '\uBB2D';
printf("%c\n", c); // Output: 묭
JavaScript:
const char = '\uBB2D';
console.log(char); // Output: 묭
Java:
char c = '\uBB2D';
System.out.println(c); // Output: 묭
JSON:
{"text": "\uBB2D"} // Value: 묭
Python:
char = '\uBB2D'
print(char) # Output: 묭
Perl:
my $char = "\x{BB2D}";
print $char; # Output: 묭
PHP:
$char = "\x{BB2D}";
echo $char; // Output: 묭
Ruby:
char = "\u{BB2D}"
puts char # Output: 묭
Rust:
let c = '\u{BB2D}';
println!("{}", c); // Output: 묭
Go:
char := '\uBB2D'
fmt.Printf("%c\n", char) // Output: 묭
CSS:
/* CSS content property */
.element::before {
content: "\00BB2D"; /* 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%AC%AD
MD5:
98e7cba064557b9e9d77bb61f2ee1d0c
SHA1:
68842fd9cb6b8c17d2c5ba95e9c3d10b6addbc23
Base64:
66yt