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