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