C:
char c = '\uB1AD';
printf("%c\n", c); // Output: 놭
JavaScript:
const char = '\uB1AD';
console.log(char); // Output: 놭
Java:
char c = '\uB1AD';
System.out.println(c); // Output: 놭
JSON:
{"text": "\uB1AD"} // Value: 놭
Python:
char = '\uB1AD'
print(char) # Output: 놭
Perl:
my $char = "\x{B1AD}";
print $char; # Output: 놭
PHP:
$char = "\x{B1AD}";
echo $char; // Output: 놭
Ruby:
char = "\u{B1AD}"
puts char # Output: 놭
Rust:
let c = '\u{B1AD}';
println!("{}", c); // Output: 놭
Go:
char := '\uB1AD'
fmt.Printf("%c\n", char) // Output: 놭
CSS:
/* CSS content property */
.element::before {
content: "\00B1AD"; /* 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%86%AD
MD5:
41e6e5dde76f62289e1d7de7cd0f524e
SHA1:
7321d8e0c12ba213cc8e2a80280cb2116229e139
Base64:
64at