C:
char c = '\uB295';
printf("%c\n", c); // Output: 늕
JavaScript:
const char = '\uB295';
console.log(char); // Output: 늕
Java:
char c = '\uB295';
System.out.println(c); // Output: 늕
JSON:
{"text": "\uB295"} // Value: 늕
Python:
char = '\uB295'
print(char) # Output: 늕
Perl:
my $char = "\x{B295}";
print $char; # Output: 늕
PHP:
$char = "\x{B295}";
echo $char; // Output: 늕
Ruby:
char = "\u{B295}"
puts char # Output: 늕
Rust:
let c = '\u{B295}';
println!("{}", c); // Output: 늕
Go:
char := '\uB295'
fmt.Printf("%c\n", char) // Output: 늕
CSS:
/* CSS content property */
.element::before {
content: "\00B295"; /* 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%8A%95
MD5:
06a1800ad9522e41019b6887a74d3f2a
SHA1:
d88b6540ca8bc8859111f141fee455a0e1883f47
Base64:
64qV