C:
char c = '\uB152';
printf("%c\n", c); // Output: 녒
JavaScript:
const char = '\uB152';
console.log(char); // Output: 녒
Java:
char c = '\uB152';
System.out.println(c); // Output: 녒
JSON:
{"text": "\uB152"} // Value: 녒
Python:
char = '\uB152'
print(char) # Output: 녒
Perl:
my $char = "\x{B152}";
print $char; # Output: 녒
PHP:
$char = "\x{B152}";
echo $char; // Output: 녒
Ruby:
char = "\u{B152}"
puts char # Output: 녒
Rust:
let c = '\u{B152}';
println!("{}", c); // Output: 녒
Go:
char := '\uB152'
fmt.Printf("%c\n", char) // Output: 녒
CSS:
/* CSS content property */
.element::before {
content: "\00B152"; /* 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%85%92
MD5:
5d0253cf97cda1dc022363d18a551418
SHA1:
abc31ffcccd50e991e3948ed74e187f2fbdc0433
Base64:
64WS