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