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