« [iPhoto]iPhoto用Web書き出し追加テンプレート【AdobeSpry】 | トップページ | [iPhoto]iPhoto書き出し用WEBテンプレート【まとめ】 »

[Q&A]MacでWEBで見かける『あの』文字を入力したい

あの〜ぉ
ハートみたいな変な文字(母国語な人に失礼です...笑)を
BLOGとかにコピペしたらぁ〜
文字バケしちゃうんですぅ〜

だそうで

問題の文字はこれ『


facebookとかでよく見るんだと.....笑
Force4u00221030_221438


こちらの記事
[MorxTester]フォントの文字のGIDやUIDを確認する: [FORCE][LINK]新しいウィンドで開きますに書いた

MorxTesterを入れてあげて
Force4u00221030_222513

前に&#x
後に;
を入れるんだよ

って説明したが
首かしげたままだったので
ダメな様子トホホ

じゃぁこれでやって
[AppleScript]htmlentities変換【TextEdit版】: [FORCE][LINK]新しいウィンドで開きます

って事で終わるんだろうけれども
?エラー?なんで?phpの制限?

面倒だったので


こんなんして終了




display dialog "1文字だけよ" default answer "" buttons {"変換", "Cancel"} with icon 1 default button 1 with title "文字をコピペ" cancel button "Cancel"
set MainText to text returned of the result as Unicode text


tell application "TextEdit"
---tell application "Jedit X"
launch
activate
make new document at end of documents
tell front document
set font of every word to "Arial Unicode"
set its text to (MainText) as text
set test to id of MainText
set TheTextToEncode to every paragraph
set theResult to my encodehexdump(TheTextToEncode)


set theResultHex to "&#x" & theResult & ";"
set every paragraph to theResultHex

---replaceAll string "(.*)" to "&#x\\1;" with select all, case sensitive, grep and entire word

end tell
end tell






on encodehexdump(str)
set scpt to " echo \"" & str & "\"| hexdump |awk '{printf $2 $3 $4}'"
return do shell script scpt
end encodehexdump

まぁねぇ
仕事用じゃぁないし...笑


「encodehexdump.app.zip」をダウンロード[Download]新しいウィンドで開きます

「encodehexdump.rtf」をダウンロード[LINK]新しいウィンドで開きます

|

« [iPhoto]iPhoto用Web書き出し追加テンプレート【AdobeSpry】 | トップページ | [iPhoto]iPhoto書き出し用WEBテンプレート【まとめ】 »

CharacterEntity」カテゴリの記事

コメント

この記事へのコメントは終了しました。